summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/content-security-policy/script-src/javascript-window-open-blocked.html
blob: ae4d8227edc83cb238fda810268a73278ab31bfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE HTML>
<html>
<head>
    <title>Window.open should not open javascript url if not allowed.</title>
    <meta http-equiv="Content-Security-Policy" content="script-src 'nonce-abc';">
    <script nonce='abc' src='/resources/testharness.js'></script>
    <script nonce='abc' src='/resources/testharnessreport.js'></script>
</head>
<body>
  <script nonce='abc'>
    var t = async_test("Check that a securitypolicyviolation event is fired");
    window.addEventListener('securitypolicyviolation', t.step_func_done(function(e) {
      assert_equals(e.blockedURI, "inline");
      assert_equals(e.violatedDirective, "script-src-elem");
    }));

    window.open('javascript:test(function() { assert_unreached("FAIL")});', 'new');
  </script>
</body>
</html>