tor-browser

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

out-of-flow-in-multicolumn-028.html (964B)


      1 <!DOCTYPE html>
      2 <title>
      3  Nested abpos in a nested fragmentation context.
      4 </title>
      5 <link rel="help" href="https://www.w3.org/TR/css-position-3/#abspos-breaking">
      6 <link rel="match" href="../reference/ref-filled-green-100px-square.xht">
      7 <style>
      8  .multicol {
      9    column-count: 2;
     10    column-fill: auto;
     11    column-gap: 0px;
     12  }
     13  #outer {
     14    height: 100px;
     15    width: 100px;
     16    background: red;
     17  }
     18  .rel {
     19    position: relative;
     20  }
     21  .abs {
     22    position: absolute;
     23  }
     24 </style>
     25 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
     26 <div class="multicol" id="outer">
     27  <div class="multicol" style="width: 50px;">
     28    <div class="rel">
     29      <div class="abs">
     30        <div class="multicol" style="width: 25px;">
     31          <div class="rel" style="height: 800px;">
     32            <div class="abs" style="height: 800px; width: 12.5px; background-color: green;"></div>
     33          </div>
     34        </div>
     35      </div>
     36    </div>
     37  </div>
     38 </div>