tor-browser

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

out-of-flow-in-multicolumn-037.html (1097B)


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