blob: b08c49acdf2cfd4b75ce08ba7bfbbf22aa602566 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script>
if (window.testRunner)
testRunner.dumpAsText();
</script>
<meta http-equiv="Content-Security-Policy" content="script-src 'nonce-A' 'nonce-C'">
<meta http-equiv="Content-Security-Policy" content="script-src 'nonce-B' 'nonce-C'">
</head>
<body>
<p>Tests that an inline script is allowed to execute only if its nonce appears in all policies. This test PASSED if there are two console warnings and a JavaScript alert with message PASS. Otherwise, it FAILED.</p>
<script nonce="A">alert("FAIL did execute first script")</script>
<script nonce="B">alert("FAIL did execute second script")</script>
<script nonce="C">alert("PASS")</script>
</body>
</html>