493915-1.html (272B)
1 <html> 2 <head> 3 <script type="text/javascript"> 4 5 function boom() 6 { 7 s = document.createElement("span"); 8 a = document.createElement("audio"); 9 a['src'] = "javascript:4"; 10 a['loopend'] = 3; 11 s.appendChild(a); 12 } 13 14 </script> 15 </head> 16 17 <body onload="boom();"></body> 18 </html>