1185176.html (510B)
1 <!DOCTYPE html> 2 <html class="reftest-wait"> 3 <head> 4 <script> 5 6 function boom() 7 { 8 var ac = new window.AudioContext(); 9 var oscillator = ac.createOscillator(); 10 oscillator.start(0); 11 oscillator.stop(0.1); 12 setTimeout(function() { 13 oscillator.channelCount = 1; 14 oscillator.channelCountMode = "explicit"; 15 oscillator.channelInterpretation = "speakers"; 16 document.documentElement.removeAttribute("class"); 17 }, 1000); 18 } 19 20 </script> 21 </head> 22 <body onload="boom();"></body> 23 </html>