mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-09 12:51:09 +02:00
MozReview-Commit-ID: ByMEEcTQQtd --HG-- extra : rebase_source : af62eeccdc22b63022ac18e46023c153798caa94
15 lines
461 B
HTML
15 lines
461 B
HTML
<!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>
|