709954.html (243B)
1 <!DOCTYPE html> 2 <html> 3 4 <head> 5 <script> 6 7 function boom() 8 { 9 setTimeout(function(){ 10 document.documentElement.removeChild(document.body); 11 }, 0); 12 } 13 14 </script> 15 </head> 16 17 <body onload="boom();"> 18 <input value="f" pattern="["> 19 </body> 20 21 </html>