tor-browser

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

nested-flex-item-expansion-in-mulicol.html (728B)


      1 <!DOCTYPE html>
      2 <link rel="help" href="https://drafts.csswg.org/css-flexbox-1/#pagination">
      3 <link rel="match" href="../../reference/ref-filled-green-100px-square.xht">
      4 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
      5 <div style="columns:2; gap:0; column-fill:auto; width:100px; height:100px; background:red;">
      6  <div style="height:50px; background:green;"></div>
      7  <div style="display:flex;">
      8    <div style="display:flex;">
      9      <div style="width:50px;">
     10        <div style="height:30px;"></div>
     11        <div style="height:50px; contain:size; background:green;"></div>
     12      </div>
     13    </div>
     14  </div>
     15  <div style="height:50px; margin-left:-100%; width:200%; background:green;"></div>
     16 </div>