tor-browser

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

multi-line-row-flex-fragmentation-042.tentative.html (975B)


      1 <!DOCTYPE html>
      2 <title>
      3  Multi-line row flex fragmentation: tall content inside constrained block.
      4 </title>
      5 <link rel="help" href="https://github.com/w3c/csswg-drafts/issues/6056#issuecomment-951767882">
      6 <link rel="help" href="https://drafts.csswg.org/css-flexbox-1/#pagination">
      7 <link rel="match" href="../../reference/ref-filled-green-100px-square.xht">
      8 <style>
      9  #flex {
     10    display: flex;
     11    flex-wrap: wrap;
     12    height: 25px;
     13    background: red;
     14  }
     15  #flex > div {
     16    width: 100%;
     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; column-fill: auto; column-gap: 0; height: 75px;">
     22    <div style="height: 50px; background: green;"></div>
     23    <div id="flex">
     24      <div style="contain: size; height: 50px; background: green;"></div>
     25      <div style="contain: size; height: 100px; background: green;"></div>
     26    </div>
     27  </div>
     28 </div>