884202.html (386B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <script> 5 function f() 6 { 7 window.removeEventListener("pagehide", f, false); 8 var root = document.documentElement; 9 document.removeChild(root); 10 document.appendChild(root); 11 } 12 13 function boom() 14 { 15 window.addEventListener("pagehide", f, false); 16 window.location = "data:text/html,4"; 17 } 18 </script> 19 </head> 20 <body onload="boom();"></body> 21 </html>