mshtml/tests: Correct a test and show a Wine bug.

This commit is contained in:
Paul Vriens 2009-06-06 11:57:41 +02:00 committed by Alexandre Julliard
parent c867eca1e0
commit 3aef9ef08e
1 changed files with 2 additions and 1 deletions

View File

@ -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);