tor-browser

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

multi-line-row-flex-fragmentation-021.html (873B)


      1 <!DOCTYPE html>
      2 <title>
      3  Multi-line row flex fragmentation with break-inside: avoid.
      4 </title>
      5 <link rel="help" href="https://drafts.csswg.org/css-flexbox-1/#pagination">
      6 <link rel="match" href="../../reference/ref-filled-green-100px-square.xht">
      7 <style>
      8  #flex {
      9    display: flex;
     10    flex-wrap: wrap;
     11  }
     12  #flex > div {
     13    background: green;
     14    width: 50px;
     15  }
     16 </style>
     17 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
     18 <div style="width: 100px; height: 100px; columns: 2; column-gap: 0; column-fill: auto; position: relative; background: red;">
     19  <div style="width: 50px; height: 30px; background: green;"></div>
     20  <div style="position: absolute; height: 70px; width: 50px; background: green;"></div>
     21  <div id="flex">
     22    <div style="height: 80px; break-inside: avoid;"></div>
     23    <div style="height: 20px;"></div>
     24  </div>
     25 </div>