summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/webmessaging/broadcastchannel/sandbox.html
blob: aedf3c0d6fe64dca2b3a6058d69d7f3a7f70cc28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<meta charset=utf-8>
<title>Creating BroadcastChannel in an opaque origin</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<body>
<script>
async_test(t => {
    self.onmessage = t.step_func(e => {
        assert_equals(e.data, 'Created');
        t.done();
      });
  });
</script>
<iframe sandbox="allow-scripts" src="resources/sandboxed.html"></iframe>
</body>