chrome-first-letter-container-query-crash.html (653B)
1 <!DOCTYPE html> 2 <head> 3 <title>Chrome crash issue 41492455</title> 4 <link rel="help" href="https://issues.chromium.org/issues/41492455"> 5 </head> 6 <span id="sp"></span> 7 <style> 8 head, html, body, span { display: inline-block; } 9 html::first-letter, span::first-letter { 10 color: pink; 11 } 12 span { 13 container-type: inline-size; 14 float: right; 15 } 16 body { 17 writing-mode: vertical-rl; 18 } 19 </style> 20 <script> 21 document.body.offsetHeight; 22 document.documentElement.style.display = "block"; 23 document.head.style.display = "none"; 24 document.body.style.display = "block"; 25 sp.style.display = "inline"; 26 document.body.offsetHeight; 27 </script>