tor-browser

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

section-with-overflow-000.html (920B)


      1 <!DOCTYPE html>
      2 <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
      3 <link rel="help" href="https://www.w3.org/TR/css-break-3/#parallel-flows">
      4 <style>
      5  .halfsquare {
      6    margin: -10px; /* Cover the border-spacing. */
      7    width: 50px;
      8    height: 100px;
      9    background: green;
     10  }
     11 </style>
     12 <link rel="match" href="../../reference/ref-filled-green-100px-square.xht">
     13 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
     14 <div style="columns:2; column-gap:0; column-fill:auto; width:100px; height:200px;">
     15  <div style="display:table; border-spacing:10px; background:red;">
     16    <div style="display:table-cell; vertical-align:top;">
     17      <div style="height:50px;">
     18        <div class="halfsquare"></div>
     19        <div style="height:120px;"></div>
     20        <div class="halfsquare" style="position:relative; z-index:-1;"></div>
     21      </div>
     22    </div>
     23  </div>
     24 </div>