file_bug660404-1.html (324B)
1 <script> 2 var bc = new BroadcastChannel("bug660404"); 3 window.onload = function() { 4 setTimeout(() => { 5 window.onpagehide = function(ev) { 6 bc.postMessage({command: "pagehide", persisted: ev.persisted}); 7 bc.close(); 8 }; 9 window.location.href = "file_bug660404"; 10 }, 0); 11 }; 12 </script>