summaryrefslogtreecommitdiffstats
path: root/browser/components/originattributes/test/browser/file_broadcastChanneliFrame.html
blob: 6f4c484bc9fae5f6d372dce5db2e884c4dfeefb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE HTML>
<html>
<head>
  <meta http-equiv="content-type" content="text/html; charset=utf-8">
  <title>Page broadcast channel responder for first party isolation</title>
</head>
<body>
  <div id="display" style="white-space:pre; font-family:monospace; display:inline;"></div>
<script type="text/javascript">
let bc = new BroadcastChannel("testBroadcastChannel");
bc.onmessage = function(e) {
  window.parent.postMessage(e.data, "*");
};
</script>
</body>