1185192.html (238B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <script> 5 6 function boom() 7 { 8 new Audio().mozCaptureStreamUntilEnded(); 9 var ac = new window.AudioContext(); 10 ac.resume(); 11 ac.close(); 12 } 13 14 </script> 15 </head> 16 <body onload="boom();"></body> 17 </html>