tor-browser

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

out-of-flow-in-multicolumn-027.html (911B)


      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  #inner {
     19    width: 50px;
     20  }
     21  .rel {
     22    position: relative;
     23  }
     24  .abs {
     25    position: absolute;
     26  }
     27 </style>
     28 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
     29 <div class="multicol" id="outer">
     30  <div class="rel">
     31    <div class="abs">
     32      <div class="multicol" id="inner">
     33        <div class="rel" style="height: 400px;">
     34          <div class="abs" style="height: 400px; width: 25px; background-color: green;"></div>
     35        </div>
     36      </div>
     37    </div>
     38  </div>
     39 </div>