1517199.html (461B)
1 <html class="reftest-wait"> 2 <head> 3 <script> 4 (async _ => { 5 const video = document.createElement("video"); 6 video.mozCaptureStreamUntilEnded(); 7 video.src = "test.mp4"; 8 video.playbackRate = 2; 9 await new Promise(r => video.onloadedmetadata = r); 10 video.currentTime = video.duration - 1; 11 await video.play(); 12 await new Promise(r => video.onended = r); 13 document.documentElement.removeAttribute("class"); 14 })(); 15 </script> 16 </head> 17 </html>