aria-hidden-with-select.html (459B)
1 <html class="test-wait"> 2 <head> 3 <script> 4 window.onload = function() { 5 requestAnimationFrame(() => { 6 requestAnimationFrame(() => { 7 document.querySelector('#will-hide').ariaHidden = 'true'; 8 document.documentElement.className = ''; 9 }); 10 }); 11 }; 12 </script> 13 </head> 14 <body> 15 <main> 16 <div id="will-hide"> 17 <div class="ignored"> 18 <select id="select"> 19 <option>1</option> 20 </select> 21 </div> 22 </div> 23 </main> 24 </body> 25 </html>