tor-browser

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

out-of-flow-in-multicolumn-085.html (1107B)


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