mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-03 18:47:53 +00:00
ada178047e
Differential Revision: https://phabricator.services.mozilla.com/D103963
13 lines
324 B
HTML
13 lines
324 B
HTML
<script>
|
|
var bc = new BroadcastChannel("bug660404");
|
|
window.onload = function() {
|
|
setTimeout(() => {
|
|
window.onpagehide = function(ev) {
|
|
bc.postMessage({command: "pagehide", persisted: ev.persisted});
|
|
bc.close();
|
|
};
|
|
window.location.href = "file_bug660404";
|
|
}, 0);
|
|
};
|
|
</script>
|