mirror of
https://github.com/servo/servo.git
synced 2025-08-12 17:05:33 +01:00
Update web-platform-tests to revision 3137d1d2d7757366a69f8a449b458b5057e0e81e
This commit is contained in:
parent
81ca858678
commit
d6ba94ca28
2339 changed files with 89274 additions and 9328 deletions
|
@ -0,0 +1,32 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>Script injected via `javascript:` URIs are not allowed with `strict-dynamic`.</title>
|
||||
<script src='/resources/testharness.js' nonce='dummy'></script>
|
||||
<script src='/resources/testharnessreport.js' nonce='dummy'></script>
|
||||
|
||||
<!-- CSP served: script-src 'strict-dynamic' 'nonce-dummy' -->
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>Script injected via `javascript:` URIs are not allowed with `strict-dynamic`.</h1>
|
||||
<div id='log'></div>
|
||||
<a id='javascriptUri' href='javascript:javascriptUriScriptRan = true;'></a>
|
||||
|
||||
<script nonce='dummy'>
|
||||
var javascriptUriScriptRan = false;
|
||||
|
||||
async_test(function(t) {
|
||||
window.addEventListener('securitypolicyviolation', t.step_func_done(function(e) {
|
||||
assert_false(javascriptUriScriptRan);
|
||||
assert_equals(e.effectiveDirective, 'script-src');
|
||||
}));
|
||||
|
||||
document.getElementById('javascriptUri').click();
|
||||
assert_false(javascriptUriScriptRan);
|
||||
}, "Script injected via `javascript:` URIs are not allowed with `strict-dynamic`.");
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,5 @@
|
|||
Expires: Mon, 26 Jul 1997 05:00:00 GMT
|
||||
Cache-Control: no-store, no-cache, must-revalidate
|
||||
Cache-Control: post-check=0, pre-check=0, false
|
||||
Pragma: no-cache
|
||||
Content-Security-Policy: script-src 'strict-dynamic' 'nonce-dummy'
|
Loading…
Add table
Add a link
Reference in a new issue