mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-21 04:31:26 +00:00
12 lines
162 B
HTML
12 lines
162 B
HTML
|
|
<script>
|
|
function boom()
|
|
{
|
|
document.location.hash = "#1";
|
|
document.open();
|
|
window.parent.postMessage({}, '*');
|
|
}
|
|
</script>
|
|
|
|
<body onload="boom();"></body>
|