diff options
author | Wojtek Kosior <koszko@koszko.org> | 2022-03-09 12:55:57 +0100 |
---|---|---|
committer | Wojtek Kosior <koszko@koszko.org> | 2022-03-10 11:43:59 +0100 |
commit | aacacbb831c5658fc10b142c3b71efff7a7bdbc1 (patch) | |
tree | fcc5885b620735817f1785c8bc65866dc444d3e6 /test/haketilo_test/unit | |
parent | f37e4b6f950bd73cb846c1766790c3feba7fa217 (diff) | |
download | browser-extension-aacacbb831c5658fc10b142c3b71efff7a7bdbc1.tar.gz browser-extension-aacacbb831c5658fc10b142c3b71efff7a7bdbc1.zip |
improvement to also properly sanitize intrinsics in XML documents under older browsers (IceCat 60)
Diffstat (limited to 'test/haketilo_test/unit')
-rw-r--r-- | test/haketilo_test/unit/test_policy_enforcing.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/test/haketilo_test/unit/test_policy_enforcing.py b/test/haketilo_test/unit/test_policy_enforcing.py index 98b5044..bbc3eb9 100644 --- a/test/haketilo_test/unit/test_policy_enforcing.py +++ b/test/haketilo_test/unit/test_policy_enforcing.py @@ -144,11 +144,7 @@ def test_policy_enforcing_xml(driver, execute_in_page, csp_off_setting): def assert_properly_blocked(): click_all() - try: - assert set(driver.execute_script('return window.__run || [];')) == set() - except: - from time import sleep - sleep(100000) + assert set(driver.execute_script('return window.__run || [];')) == set() assert bool(csp_off_setting) == are_scripts_allowed(driver) # First, see if scripts run when not blocked. |