gecko-dev/accessible/tests/crashtests/884202.html

22 строки
386 B
HTML

<!DOCTYPE html>
<html>
<head>
<script>
function f()
{
window.removeEventListener("pagehide", f, false);
var root = document.documentElement;
document.removeChild(root);
document.appendChild(root);
}
function boom()
{
window.addEventListener("pagehide", f, false);
window.location = "data:text/html,4";
}
</script>
</head>
<body onload="boom();"></body>
</html>