blob: 20432a297f63a493dbeeb472decc3cc25f8f68bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!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>
|