mshtml: Fixed tests on IE7.

This commit is contained in:
Jacek Caban 2007-10-07 17:11:58 +02:00 committed by Alexandre Julliard
parent e4aa2a5477
commit 0ea0754771
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ static void test_HTMLLoadOptions(void)
memset(buf, 0xdd, sizeof(buf));
hres = IHtmlLoadOptions_QueryOption(loadopts, HTMLLOADOPTION_CODEPAGE, buf, &size);
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");
data = 100;