865004.html (337B)
1 <!DOCTYPE html> 2 <html class="reftest-wait"> 3 <head> 4 <meta charset="UTF-8"> 5 <script> 6 7 function boom() 8 { 9 var ac = new AudioContext(); 10 for (var j = 0; j < 200; ++j) { 11 ac.createScriptProcessor(undefined); 12 } 13 document.documentElement.removeAttribute("class"); 14 } 15 16 </script> 17 </head> 18 <body onload="boom();"></body> 19 </html>