ellipsis-with-image-crash.html (595B)
1 <!DOCTYPE html> 2 <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org"> 3 <link rel="help" href="https://issues.chromium.org/issues/41493875"> 4 <style> 5 #ellipsis { 6 overflow: clip; 7 text-overflow: ellipsis; 8 white-space: nowrap; 9 width: 18ch; 10 } 11 img { 12 width: 10ch; 13 } 14 .ib { 15 display: inline-block; 16 width: 10ch; 17 height: 10px; 18 } 19 </style> 20 <div id="ellipsis"> 21 <span style="border-top:1px solid;"> 22 x<br> 23 <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="><div class="ib"></div> 24 </span> 25 </div>