Mypal/layout/base/crashtests/1234622-1.html

18 lines
380 B
HTML

<!DOCTYPE html>
<script>
window.addEventListener("load", function() {
setTimeout(function() {
window.location = "data:text/html,2";
}, 0);
}, false);
window.addEventListener("pagehide", function() {
var x = document.createElement("object");
x.setAttribute("data", "data:text/plain,3");
document.documentElement.appendChild(x);
}, false);
</script>