зеркало из https://github.com/mozilla/gecko-dev.git
18 строки
366 B
HTML
18 строки
366 B
HTML
<!DOCTYPE html>
|
|
|
|
<script>
|
|
|
|
window.addEventListener("load", function() {
|
|
setTimeout(function() {
|
|
window.location = "data:text/html,2";
|
|
}, 0);
|
|
});
|
|
|
|
window.addEventListener("pagehide", function() {
|
|
var x = document.createElement("object");
|
|
x.setAttribute("data", "data:text/plain,3");
|
|
document.documentElement.appendChild(x);
|
|
});
|
|
|
|
</script>
|