865550.html (553B)
1 <html class="reftest-wait"> 2 <head> 3 <script> 4 var i = 0; 5 var interval; 6 function crash() { 7 var o0 = new AudioContext(); 8 o1 = o0.createBufferSource(); 9 ++i; 10 if (i == 2000) { 11 document.documentElement.removeAttribute("class"); 12 clearInterval(interval); 13 } 14 } 15 function start() { 16 interval = setInterval("crash()", 0) 17 } 18 </script> 19 </head> 20 <body onload="start()"> 21 </body> 22 </html>