tor-browser

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

single-line-row-flex-fragmentation-029.html (811B)


      1 <!DOCTYPE html>
      2 <title>
      3  Single-line row flex fragmentation: Row expansion, stretching and column balancing.
      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  }
     11  #flex > div {
     12    background: green;
     13    width: 25px;
     14  }
     15 </style>
     16 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
     17 <div style="width: 100px; height: 100px; background: red;">
     18  <div style="width: 100px; columns: 2; column-gap: 0;">
     19    <div id="flex">
     20      <div></div>
     21      <div>
     22        <div style="contain: size; width: 10px; height: 70px;"></div>
     23        <div style="contain: size; width: 10px; height: 100px;"></div>
     24      </div>
     25    </div>
     26  </div>
     27 </div>