non-standard-pseudo-elements-ref.html (492B)
1 <!DOCTYPE html> 2 <html lang="en" class="reftest-wait"> 3 <style> 4 video { width:560px; height:320px; } 5 </style> 6 <video> 7 <source src="/media/white.webm" type="video/webm"> 8 <source src="/media/white.mp4" type="video/mp4"> 9 <track label="English subtitles" kind="subtitles" srclang="en" src="support/test.vtt" default> 10 </video> 11 <script> 12 const v = document.querySelector('video'); 13 v.onseeked = () => { document.documentElement.classList.remove('reftest-wait'); }; 14 v.currentTime = 3; 15 </script> 16 </html>