1185191.html (336B)
1 <!DOCTYPE html> 2 <html class="reftest-wait"> 3 <head> 4 <script> 5 6 function boom() 7 { 8 var a = new AudioContext(); 9 var b = new BroadcastChannel("x"); 10 a.addEventListener("statechange", bye, false); 11 } 12 13 function bye() 14 { 15 document.documentElement.removeAttribute("class"); 16 } 17 18 </script> 19 </head> 20 <body onload="boom();"></body> 21 </html>