Commit 05e18862 authored by Alistair Leslie-Hughes's avatar Alistair Leslie-Hughes Committed by Alexandre Julliard

mshtml: Fix test for Windows 7 with IE9.

parent 83796800
...@@ -4459,7 +4459,8 @@ static void test_window(IHTMLDocument2 *doc) ...@@ -4459,7 +4459,8 @@ static void test_window(IHTMLDocument2 *doc)
str = NULL; str = NULL;
hres = IHTMLWindow2_toString(window, &str); hres = IHTMLWindow2_toString(window, &str);
ok(hres == S_OK, "toString failed: %08x\n", hres); ok(hres == S_OK, "toString failed: %08x\n", hres);
ok(!strcmp_wa(str, "[object]"), "toString returned %s\n", wine_dbgstr_w(str)); ok(!strcmp_wa(str, "[object]") ||
!strcmp_wa(str, "[object Window]") /* win7 ie9 */, "toString returned %s\n", wine_dbgstr_w(str));
SysFreeString(str); SysFreeString(str);
test_window_name(window, NULL); test_window_name(window, NULL);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment