summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/content-security-policy/frame-src/frame-src-sandboxed-allowed.html
blob: 419a14458b759084ec1a9dd3e037a279149fe073 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html>
<html>
  <head>
    <title>Frame-src: 'self' matches even if the parent's origin is unique.</title>
    <script src="/resources/testharness.js"></script>
    <script src="/resources/testharnessreport.js"></script>
  </head>
  <body>
    <script>
      var t = async_test('SubframeLoaded');

      window.addEventListener('securitypolicyviolation', t.step_func(function(e) {
        if (e.violatedDirective === "frame-src") {
          assert_unreached('unexpected securitypolicyviolation');
          t.done();
        }
      }));

      window.addEventListener("message", t.step_func(function(event) {
        assert_equals(event.data, "PASS", 'unexpected message: ' + event.data);
        t.done();
      }));

      f = document.createElement("iframe");
      f.src = "/content-security-policy/support/postmessage-pass.html";
      document.body.appendChild(f);
    </script>
  </body>
</html>