495546-1.html (451B)
1 <html xmlns="http://www.w3.org/1999/xhtml"> 2 <head> 3 <script type="text/javascript"> 4 5 function boom() 6 { 7 var video = document.createElement("video"); 8 var source = document.createElement("source"); 9 source.setAttributeNS(null, "src", "http://127.0.0.1/"); 10 video.appendChild(source); 11 document.body.appendChild(video); 12 setTimeout(function() { document.body.removeChild(video); }, 20); 13 } 14 15 </script> 16 </head> 17 18 <body onload="boom();"></body> 19 </html>