1157994.html (312B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <script> 5 6 function boom() 7 { 8 var ac = new AudioContext(); 9 // first "suspended" -> "running" transition 10 ac.onstatechange = function() { 11 ac.onstatechange = null; 12 ac.suspend(); 13 ac.close(); 14 } 15 } 16 17 </script> 18 </head> 19 <body onload="boom();"></body> 20 </html>