tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

block-ellipsis-030.html (705B)


      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. This includes dropping U+1680 OGHAM SPACE MARK.">
      8 <style>
      9 div {
     10  line-clamp: 1;
     11  width: 5ch;
     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>