1573536.html (450B)
1 <html class="reftest-wait"> 2 <head> 3 <script> 4 function start () { 5 window.navigator.mediaDevices.getUserMedia({ 6 'audio': { 7 'mediaSource': 'audioCapture' 8 }, 9 'video': true, 10 'fake': true 11 }).catch(() => Promise.resolve()) 12 .then(() => document.documentElement.removeAttribute("class")) 13 } 14 15 window.addEventListener('load', start) 16 </script> 17 </head> 18 </html>