tor-browser

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

out-of-flow-in-multicolumn-006.html (921B)


      1 <!DOCTYPE html>
      2 <link rel="help" href="https://www.w3.org/TR/css-position-3/#abspos-breaking">
      3 <link rel="match" href="../reference/ref-filled-green-100px-square.xht">
      4 <!-- Tests that the fragments of a positioned element are added to the right fragmentainer despite the presence of column spanners. -->
      5 <style>
      6  #multicol {
      7    column-count: 2;
      8    column-fill: auto;
      9    column-gap: 0px;
     10    height: 140px;
     11    width: 100px;
     12    margin-top: -40px;
     13  }
     14  .rel {
     15    position: relative;
     16  }
     17  .abs {
     18    position: absolute;
     19    width: 50px;
     20    height: 200px;
     21    background: green;
     22  }
     23  .spanner {
     24    column-span: all;
     25    height: 5px;
     26  }
     27 </style>
     28 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
     29 <div id="multicol">
     30  <div class="rel">
     31    <div class="spanner"></div>
     32    <div style="height: 60px; "></div>
     33    <div class="spanner"></div>
     34    <div class="abs"></div>
     35  </div>
     36 </div>