1604941.html (407B)
1 <!DOCTYPE html> 2 <html class="reftest-wait"> 3 <head> 4 <script> 5 6 async function boom() 7 { 8 await SpecialPowers.pushPrefEnv({"set": [ 9 ["media.cubeb.force_null_context", true], 10 ]}); 11 new Audio().mozCaptureStreamUntilEnded(); 12 var ac = new window.AudioContext(); 13 ac.resume(); 14 ac.close(); 15 document.documentElement.removeAttribute("class"); 16 } 17 18 </script> 19 </head> 20 <body onload="boom();"></body> 21 </html>