blob: 11b349157a2698552f4033f62df4afef29e533fe [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Security-Policy" content="connect-src 'none'">
<script>
if (window.testRunner)
testRunner.dumpAsText();
</script>
</head>
<body>
<pre id="console"></pre>
<script>
function log(msg)
{
document.getElementById("console").appendChild(document.createTextNode(msg + "\n"));
}
try {
navigator.sendBeacon("http://localhost:8000/security/contentSecurityPolicy/resources/echo-report.py");
log("Pass");
} catch(e) {
log("Fail");
}
</script>
</body>
</html>