trisquel-icecat/icecat/debian/tests/data/HTML5test/assets/csp.html

19 lines
No EOL
327 B
HTML

<!doctype html>
<html>
<body>
<script>
var passed = false;
try {
eval('true');
} catch(e) {
passed = true;
}
window.top.postMessage('csp10:' + (passed ? 'passed' : 'failed'), '*');
</script>
</body>
</html>