mshtml/tests: Correct a test and show a Wine bug.
This commit is contained in:
parent
c867eca1e0
commit
3aef9ef08e
|
@ -2957,7 +2957,8 @@ static void test_default_style(IHTMLStyle *style)
|
|||
|
||||
hres = IHTMLStyle_get_margin(style, &str);
|
||||
ok(hres == S_OK, "get_margin failed: %08x\n", hres);
|
||||
ok(strcmp_wa(str, "1"), "margin = %s\n", dbgstr_w(str));
|
||||
todo_wine
|
||||
ok(!strcmp_wa(str, "1px"), "margin = %s\n", dbgstr_w(str));
|
||||
|
||||
hres = IHTMLStyle_put_margin(style, NULL);
|
||||
ok(hres == S_OK, "put_margin failed: %08x\n", hres);
|
||||
|
|
Loading…
Reference in New Issue