1223670.html (442B)
1 <!DOCTYPE html> 2 <html class="reftest-wait"> 3 <head> 4 <script> 5 6 function boom() 7 { 8 9 var ac = new window.AudioContext("publicnotification"); 10 11 setTimeout(function() { 12 document.documentElement.removeAttribute("class"); 13 var htmlAudio = new Audio(); 14 var stream = htmlAudio.mozCaptureStreamUntilEnded(); 15 ac.createMediaStreamSource(stream); 16 }, 0); 17 } 18 19 </script> 20 </head> 21 <body onload="boom();"> 22 </body> 23 </html>