summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/webmessaging/broadcastchannel/resources/sandboxed.html
blob: e32962cdfd4456942c9af24541fb34e93d9c5a6d (plain)
1
2
3
4
5
6
7
8
9
10
<!DOCTYPE html>
<meta charset=utf-8>
<script>
try {
  let c = new BroadcastChannel('foo');
  parent.postMessage('Created', '*');
} catch (e) {
  parent.postMessage('Exception: ' + e.name, '*');
}
</script>