blob: 158ef658829aeb5e23b82410db4c5f8d91caa799 [file] [log] [blame]
<?php
header("Content-Security-Policy-Report-Only: script-src 'nonce-dummy' 'nonce-dump-as-text'");
header("Content-Security-Policy: script-src 'nonce-that-is-not-equal-to-dummy' 'nonce-dump-as-text'");
?>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Security-Policy" content="script-src 'nonce-that-is-not-equal-to-dummy' 'nonce-dump-as-text'">
<script nonce="dump-as-text">
if (window.testRunner)
testRunner.dumpAsText();
</script>
</head>
<body>
<p id="result">PASS did not execute script.</p>
<script nonce="dummy">
document.getElementById("result").textContent = "FAIL did execute script.";
</script>
</body>
</html>