file_bug1773192_1.html (382B)
1 <script> 2 let bc = new BroadcastChannel("bug1743353"); 3 bc.addEventListener("message", ({ data }) => { 4 if (data == "next") { 5 location = "file_bug1773192_2.html"; 6 } else if (data == "close") { 7 window.close(); 8 } 9 }); 10 window.addEventListener("pageshow", () => { 11 bc.postMessage({ location: location.href, referrer: document.referrer }); 12 }); 13 </script>