aria-owns-fallback-content.html (358B)
1 <html class="test-wait"> 2 <body> 3 <div aria-owns="id1"></div> 4 <video> 5 <mark> 6 <span id='id1'></span> 7 </mark> 8 </video> 9 </body> 10 <script> 11 window.onload = () => { 12 requestAnimationFrame(() => { 13 requestAnimationFrame(() => { 14 document.documentElement.style.display = 'none'; 15 document.documentElement.className = ''; 16 }); 17 }); 18 } 19 </script>