mshtml: Fix a test that fails in Vista.

This commit is contained in:
James Hawkins 2008-09-02 01:04:21 -05:00 committed by Alexandre Julliard
parent e57badb667
commit d62b33f229
1 changed files with 3 additions and 1 deletions

View File

@ -2728,7 +2728,9 @@ static void run_domtest(const char *str, domtest_t test)
}
ref = IHTMLDocument2_Release(doc);
ok(!ref, "ref = %d\n", ref);
ok(!ref ||
ref == 1, /* Vista */
"ref = %d\n", ref);
}
static void gecko_installer_workaround(BOOL disable)