tor-browser

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

single-line-row-flex-fragmentation-021.html (740B)


      1 <!DOCTYPE html>
      2 <title>
      3  Single-line row flex fragmentation: If the fragmentainer is out of space
      4  but the flexbox and flex row have zero block-size, not additional
      5  fragmentainers should be created to hold this content.
      6 </title>
      7 <link rel="help" href="https://drafts.csswg.org/css-flexbox-1/#pagination">
      8 <link rel="match" href="../../reference/ref-filled-green-100px-square.xht">
      9 <style>
     10  #flex {
     11    display: flex;
     12  }
     13 </style>
     14 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
     15 <div style="width: 100px; height: 100px; columns: 1; column-rule: 20px solid red; column-fill: auto;">
     16  <div style="height: 100px; width: 100px; background: green;"></div>
     17  <div id="flex">
     18    <div></div>
     19  </div>
     20 </div>