mshtml: Don't run noscript tests in enhanced security configuration.

This commit is contained in:
Jacek Caban 2012-10-11 14:07:08 +02:00 committed by Alexandre Julliard
parent c2df65eeef
commit 45b29f9555
1 changed files with 1 additions and 1 deletions

View File

@ -6564,6 +6564,7 @@ START_TEST(dom)
if (winetest_interactive || ! is_ie_hardened()) {
run_domtest(elem_test_str, test_elems);
run_domtest(elem_test2_str, test_elems2);
run_domtest(noscript_str, test_noscript);
}else {
skip("IE running in Enhanced Security Configuration\n");
}
@ -6575,7 +6576,6 @@ START_TEST(dom)
run_domtest(frameset_str, test_frameset);
run_domtest(emptydiv_str, test_docfrag);
run_domtest(doc_blank, test_replacechild_elems);
run_domtest(noscript_str, test_noscript);
CoUninitialize();
}