table-root-direction-propagation-crash.html (314B)
1 <!doctype html> 2 <link rel="help" href="https://crbug.com/1303287"> 3 <style> 4 html { 5 display: table; 6 border-right: solid; 7 } 8 head { display: inline; } 9 body { direction: rtl; } 10 </style> 11 <body></body> 12 <script> 13 requestAnimationFrame(() => requestAnimationFrame(() => document.body.remove())); 14 </script>