blob: e02d66ae9c9c8da6f7e15329d5f9d12f91024b3b [file] [log] [blame]
<!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");
}));
window.open('javascript:test(function() { assert_unreached("FAIL")});', 'new');
</script>
</body>
</html>