atomic-item-crash.html (645B)
1 <!DOCTYPE html> 2 <html class=test-wait> 3 <link rel=author href="mailto:jja08111@gmail.com"> 4 <link rel="help" href="https://crbug.com/403617975"> 5 <style> 6 #target { appearance: textarea; container-type: size; offset: auto url(); } 7 </style> 8 <table> 9 <th id="target"> 10 <marquee> 11 <a>crash</a> 12 </marquee> 13 <dialog id="dialog" open="true"> 14 <textarea id="textarea"></textarea> 15 </dialog> 16 </th> 17 </table> 18 <script> 19 requestAnimationFrame(() => { 20 const callback = window.requestIdleCallback(() => {}); 21 dialog.close(); 22 textarea.cols = callback; 23 document.documentElement.classList.remove('test-wait'); 24 }); 25 </script> 26 </html>