497734-2.html (388B)
1 <!DOCTYPE html> 2 <html> 3 <script> 4 5 function boom() 6 { 7 audio1 = document.createElement("audio"); 8 (audio1).appendChild(document.createElement("source")); 9 (audio1).appendChild(document.createElement("source")); 10 setTimeout(function() { 11 audio2 = document.createElement("audio"); 12 audio2.appendChild(audio1); 13 }, 100); 14 } 15 16 </script> 17 <body onload="boom();"></body>