From 45b29f95550a3a8852e110b4e3b1af3c0d08a539 Mon Sep 17 00:00:00 2001 From: Jacek Caban Date: Thu, 11 Oct 2012 14:07:08 +0200 Subject: [PATCH] mshtml: Don't run noscript tests in enhanced security configuration. --- dlls/mshtml/tests/dom.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/mshtml/tests/dom.c b/dlls/mshtml/tests/dom.c index f7bba1d0794..7f1682ed232 100644 --- a/dlls/mshtml/tests/dom.c +++ b/dlls/mshtml/tests/dom.c @@ -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(); }