Paul Vriens : mshtml/tests: Correct a test and show a Wine bug.
Module: wine Branch: master Commit: 3aef9ef08eeddcc43fbd82a243753fe211d243b0 URL: http://source.winehq.org/git/wine.git/?a=commit;h=3aef9ef08eeddcc43fbd82a243... Author: Paul Vriens <Paul.Vriens.Wine(a)gmail.com> Date: Sat Jun 6 11:57:41 2009 +0200 mshtml/tests: Correct a test and show a Wine bug. --- dlls/mshtml/tests/dom.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/dlls/mshtml/tests/dom.c b/dlls/mshtml/tests/dom.c index 497fc0a..8951bf2 100644 --- a/dlls/mshtml/tests/dom.c +++ b/dlls/mshtml/tests/dom.c @@ -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);
participants (1)
-
Alexandre Julliard