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/frame-src/frame-src-same-document.sub.html - WPT Dashboard Interop Dashboard
 
 
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<html>
<body></body>
<script>
    let crossOriginUrl =
    promise_test(async test => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      for(let hash of ["#0", "#1"]) {
        let violation = new Promise(resolve => {
          window.addEventListener('securitypolicyviolation', resolve);
        });
        iframe.src = crossOriginUrl + hash;
        await violation;
      }
    }, "Same-document navigation in an iframe blocked by CSP frame-src");
</script>
</html>