tor-browser

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

text-box-trim-half-leading-block-box-001.html (650B)


      1 <!DOCTYPE html>
      2 <title>text-box-trim propagation is blocked by empty block boxes</title>
      3 <link rel="help" href="https://drafts.csswg.org/css-inline-3/#text-box-trim">
      4 <link rel="help" href="https://www.w3.org/TR/css-pseudo-4/#first-text-line">
      5 <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
      6 <link rel="match" href="text-box-trim-half-leading-block-box-001-ref.html">
      7 
      8 <style>
      9 .div-parent {
     10  outline: 1px solid orange;
     11  font: 20px/3 Ahem;
     12  text-box-trim: trim-both;
     13  text-box-edge: text;
     14 }
     15 </style>
     16 
     17 <div class="div-parent">
     18  <div></div>
     19  <div>Testline1</div>
     20  <div>Testline2</div>
     21  <div>Testline3</div>
     22  <div></div>
     23 </div>