mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
24 lines
366 B
HTML
24 lines
366 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
function removeRoot() {
|
|
window.removeEventListener("DOMNodeRemoved", removeRoot, true);
|
|
document.open();
|
|
}
|
|
|
|
window.addEventListener("DOMNodeRemoved", removeRoot, true);
|
|
|
|
var r = document.documentElement;
|
|
document.removeChild(r);
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="boom();"></body>
|
|
</html>
|