tor-browser

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

single-line-row-flex-fragmentation-037.html (817B)


      1 <!DOCTYPE html>
      2 <title>
      3  Single-line row flex fragmentation: the container gets pushed to next fragmentainer
      4  if content doesn't fit in the current fragmentainer.
      5 </title>
      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 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
      9 <div style="position: relative; width: 100px; height: 100px; columns: 2; column-gap: 0; background: red;">
     10  <div style="background: green; width: 50px; height: 50px;"></div>
     11  <div style="position: absolute; background: green; width: 50px; height: 50px;"></div>
     12  <div style="display: flex; width: 50px; background: green;">
     13    <div style="height: 100px; width: 50px; contain: size;"></div>
     14  </div>
     15 </div>