dir-change-simplifed-crash.html (507B)
1 <!DOCTYPE html> 2 <link rel="help" href="https://drafts.csswg.org/css2/#direction"> 3 <link rel="author" title="Koji Ishii" href="mailto:kojii@chromium.org"> 4 <style> 5 body, div { position: absolute; } 6 body { direction: rtl; white-space: pre-line; } 7 </style> 8 <body>  
'123456789<div> </div> 9 <script> 10 // Force layout and await paint 11 document.body.offsetLeft; 12 requestAnimationFrame(() => requestAnimationFrame(() => { 13 document.querySelector("div").dir = "ltr"; 14 })); 15 </script> 16 </body>