761831.html (366B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <script> 5 6 function boom() 7 { 8 function removeRoot() { 9 window.removeEventListener("DOMNodeRemoved", removeRoot, true); 10 document.open(); 11 } 12 13 window.addEventListener("DOMNodeRemoved", removeRoot, true); 14 15 var r = document.documentElement; 16 document.removeChild(r); 17 } 18 19 </script> 20 </head> 21 22 <body onload="boom();"></body> 23 </html>