tor-browser

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

multi-line-row-flex-fragmentation-078.html (868B)


      1 <!DOCTYPE html>
      2 <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
      3 <link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1500947">
      4 <link rel="match" href="../../reference/ref-filled-green-100px-square.xht">
      5 <style>
      6  .flex {
      7    display: flex;
      8    flex-flow: row wrap;
      9  }
     10  .flex > div {
     11    flex: 0 0 100%;
     12    contain: size;
     13    height: 50px;
     14    background: green;
     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; background:red;">
     19  <div style="columns:2; gap:0; column-fill:auto; height:120px;">
     20    <div style="height:10px;">
     21      <div style="height:50px; contain:size; background:green;"></div>
     22      <div class="flex">
     23        <div></div>
     24        <div></div>
     25        <div></div>
     26      </div>
     27    </div>
     28  </div>
     29 </div>