Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<html>
<body>
<script>
addEventListener("load", () => {
let bc = new BroadcastChannel("testChannel");
bc.postMessage(sessionStorage.getItem("testItem"));
window.close();
});
</script>
</body>
</html>