block-ellipsis-029.html (656B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSS Overflow: block-ellipsis and soft-hyphens</title> 4 <link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/"> 5 <link rel="help" href="https://drafts.csswg.org/css-overflow-4/#block-ellipsis"> 6 <link rel="match" href="reference/block-ellipsis-029-ref.html"> 7 <meta name="assert" content="block ellipsis is inserted *after* white space processing phase 2"> 8 <style> 9 div { 10 line-clamp: 1; 11 width: 5.1ch; 12 font-family: monospace; 13 border: solid 1px; 14 margin: 1em; 15 } 16 </style> 17 <p>Test passes if the two boxes below are identical. 18 19 <div class=clamp>123 5 789</div> 20 21 <div class=ref>123…</div>