Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /content-security-policy/default-src/default-src-inline-allowed.sub.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<head>
<!-- Programmatically converted from a WebKit Reftest, please forgive resulting idiosyncracies.-->
<script>
window.addEventListener('securitypolicyviolation', function(e) {
log("FAIL");
});
</script>
<meta http-equiv="Content-Security-Policy" content="default-src 'self' about: 'unsafe-inline'; connect-src 'self';">
<title>default-src-inline-allowed</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="../support/logTest.sub.js?logs=[]"></script>
<script src='../support/alertAssert.sub.js?alerts=["PASS 1 of 2","PASS 2 of 2"]'></script>
</head>
<body onload="alert_assert('PASS 2 of 2')">
<script>
alert_assert('PASS 1 of 2');
</script>
<!--iframe src="javascript:alert_assert('Fail')"></iframe-->
<div id="log"></div>
</body>
</html>