1986452.html (493B)
1 <!DOCTYPE html> 2 <html class="reftest-wait"> 3 <html> 4 <head> 5 <script> 6 document.addEventListener("DOMContentLoaded", async () => { 7 const stream = await navigator.mediaDevices.getUserMedia({ 8 "video": { 9 "height": 127 10 } 11 }); 12 const v = document.createElement("video"); 13 v.srcObject = stream; 14 v.play(); 15 await new Promise(r => v.onresize = r); 16 document.documentElement.removeAttribute("class"); 17 }); 18 </script> 19 </head> 20 </html>