tor-browser

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

multi-line-row-flex-fragmentation-041.tentative.html (1006B)


      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  }
     13  #flex > div {
     14    width: 100%;
     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; column-fill: auto; column-gap: 0; height: 75px;">
     20    <div id="flex">
     21      <div style="height: 50px; background: green;"></div>
     22      <div style="height: 25px; background: red;">
     23        <div style="contain: size; height: 50px; background: green;"></div>
     24        <div style="contain: size; height: 100px; background: green;"></div>
     25      </div>
     26    </div>
     27  </div>
     28 </div>