Commit 0ea07547 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml: Fixed tests on IE7.

parent e4aa2a54
...@@ -69,7 +69,7 @@ static void test_HTMLLoadOptions(void) ...@@ -69,7 +69,7 @@ static void test_HTMLLoadOptions(void)
memset(buf, 0xdd, sizeof(buf)); memset(buf, 0xdd, sizeof(buf));
hres = IHtmlLoadOptions_QueryOption(loadopts, HTMLLOADOPTION_CODEPAGE, buf, &size); hres = IHtmlLoadOptions_QueryOption(loadopts, HTMLLOADOPTION_CODEPAGE, buf, &size);
ok(hres == E_FAIL, "QueryOption failed: %08x\n", hres); ok(hres == E_FAIL, "QueryOption failed: %08x\n", hres);
ok(size == sizeof(data), "size = %d\n", size); ok(size == sizeof(data) || !size, "size = %d\n", size);
ok(buf[0] == 0xdd, "buf changed\n"); ok(buf[0] == 0xdd, "buf changed\n");
data = 100; data = 100;
......
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