tor-browser

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

multi-line-row-flex-fragmentation-077.html (912B)


      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    background: green;
     13  }
     14  .flex > div > div {
     15    contain:size;
     16    height: 50px;
     17  }
     18 </style>
     19 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
     20 <div style="width:100px; height:100px; background:red;">
     21  <div style="columns:2; gap:0; column-fill:auto; height:110px;">
     22    <div style="height:10px;">
     23      <div style="height:50px; background:green;"></div>
     24      <div class="flex">
     25        <div><div></div></div>
     26        <div><div></div></div>
     27        <div><div></div></div>
     28      </div>
     29    </div>
     30  </div>
     31 </div>