delayed-ignored-change.html (417B)
1 <html class="test-wait"> 2 <style> 3 body { font-size: x-large; } 4 .hidden { visibility: hidden; } 5 </style> 6 <rb class="hidden"> 7 <textarea></textarea> 8 </rb> 9 <script> 10 window.addEventListener('load', () => { 11 window.requestAnimationFrame(() => { 12 window.requestAnimationFrame(() => { 13 document.querySelector('style').remove(); 14 document.documentElement.className = ''; 15 }); 16 }); 17 }); 18 </script> 19 </html>