tor-browser

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

out-of-flow-in-multicolumn-088.html (1223B)


      1 <!DOCTYPE html>
      2 <title>
      3  Nested fixedpos in a nested multicol with inline container in outer multicol.
      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    margin-left: -100px;
     17  }
     18  #inner {
     19    width: 50px;
     20    height: 700px;
     21  }
     22  .rel {
     23    position: relative;
     24  }
     25  .abs {
     26    position: absolute;
     27  }
     28  .fixed {
     29    position: fixed;
     30    width: 50px;
     31    height: 200px;
     32    background: green;
     33    top: 0px;
     34    left: 0px;
     35  }
     36 </style>
     37 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
     38 <div class="multicol" id="outer">
     39  <div style="height: 200px;"></div>
     40  <span style="filter:blur(0px);">
     41    <div style="height: 200px; background-color: red;"></div>
     42    <div class="multicol" id="inner">
     43        <div class="rel">
     44          <div style="height: 800px;"></div>
     45          <div class="abs">
     46            <div style="height: 400px;"></div>
     47            <div class="fixed"></div>
     48          </div>
     49        </div>
     50    </div>
     51  </span>
     52 </div>