line-break-float-crash.html (471B)
1 <!DOCTYPE html> 2 <link rel="help" href="https://drafts.csswg.org/css-text-3"> 3 <link rel="author" title="Koji Ishii" href="mailto:kojii@chromium.org"> 4 <style> 5 #container { 6 font-size: 100px; 7 width: 33554432px; 8 } 9 atomic { 10 display: inline-block; 11 width: 1ch; 12 } 13 left { 14 float: left; 15 width: 33554432px; 16 height: 10px; 17 } 18 </style> 19 <body> 20 <div id="container"> 21 <atomic></atomic> 22 0 23 <left></left> 24 <span dir="ltr"><atomic></atomic></span> 25 </div> 26 </body>