tor-browser

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

out-of-flow-in-multicolumn-089.html (1029B)


      1 <!DOCTYPE html>
      2 <title>
      3  Nested fixedpos in a multicol with same inline container as its abspos
      4  parent.
      5 </title>
      6 <link rel="help" href="https://www.w3.org/TR/css-position-3/#abspos-breaking">
      7 <link rel="match" href="../reference/ref-filled-green-100px-square.xht">
      8 <style>
      9  .multicol {
     10    column-count: 2;
     11    column-fill: auto;
     12    column-gap: 0px;
     13    height: 100px;
     14    width: 100px;
     15    margin-left: -100px;
     16  }
     17  .rel {
     18    position: relative;
     19  }
     20  .abs {
     21    position: absolute;
     22  }
     23  .fixed {
     24    position: fixed;
     25    width: 50px;
     26    height: 200px;
     27    background: green;
     28    top: 0px;
     29    left: 0px;
     30  }
     31 </style>
     32 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
     33 <div class="multicol">
     34  <div style="height: 200px;"></div>
     35  <span style="filter:blur(0px);">
     36    <div style="height: 200px; background-color: red;"></div>
     37    <div style="height: 800px;"></div>
     38    <div class="abs">
     39      <div style="height: 400px;"></div>
     40      <div class="fixed"></div>
     41    </div>
     42  </span>
     43 </div>