tor-browser

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

flex-container-fragmentation-008.html (709B)


      1 <!DOCTYPE html>
      2 <title>
      3  OOF in fragmented flex container with viewport CB.
      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  .multicol {
      9    background: red;
     10    column-count: 2;
     11    column-gap: 0px;
     12    height: 100px;
     13    width: 100px;
     14  }
     15  .flex {
     16    display: flex;
     17    height: 200px;
     18    width: 50px;
     19  }
     20  .abs {
     21    background: green;
     22    position: absolute;
     23    height: 100px;
     24    width: 100px;
     25  }
     26 </style>
     27 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
     28 <div class="multicol">
     29  <div class="flex">
     30    <div class="abs"></div>
     31  </div>
     32 </div>