tor-browser

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

line-clamp-auto-002-crash.html (663B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Overflow: `line-clamp: auto` box containing float after margins should not crash</title>
      4 <link rel="author" title="Andreu Botella" href="mailto:abotella@igalia.com">
      5 <link rel="help" href="https://crbug.com/404288146">
      6 <link rel="help" href="https://drafts.csswg.org/css-overflow-4/#line-clamp">
      7 <style>
      8  .parent {
      9    line-height: 1.2em;
     10    line-clamp: auto;
     11    max-height: 3lh;
     12  }
     13  .float {
     14    float: left;
     15  }
     16  .margins {
     17    margin-block-start: 1em;
     18    margin-block-end: 1em;
     19  }
     20 </style>
     21 <div class="parent">
     22  <div class="margins">A</div>
     23  <div>
     24    <div class="float"></div>
     25    B
     26  </div>
     27 </div>