aria-owns-reparent.html (451B)
1 <html class="test-wait"> 2 <script> 3 document.addEventListener("DOMContentLoaded", () => { 4 requestAnimationFrame(() => { 5 requestAnimationFrame(() => { 6 document.getElementById('owner').setAttribute('aria-owns','x'); 7 document.body.setAttribute('aria-hidden', 'true'); 8 document.documentElement.className = ''; 9 }); 10 }); 11 }); 12 </script> 13 </head> 14 <body> 15 <p id='owner'></p> 16 17 <div> 18 <fieldset id='x'></fieldset> 19 </div> 20 </body> 21 </html>