8 lines
208 B
HTML
8 lines
208 B
HTML
<script>
|
|
addEventListener("load", () => {
|
|
(new BroadcastChannel("bug1729662")).postMessage("load");
|
|
history.pushState(1, null, location.href);
|
|
history.back();
|
|
history.forward();
|
|
});
|
|
</script>
|