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