tor-browser

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

nested-float-in-multicol-crash.html (377B)


      1 <!DOCTYPE html>
      2 <link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1336847">
      3 <style>
      4  .float {
      5    float: left;
      6    clear: both;
      7  }
      8  div {
      9    padding-bottom: 10px;
     10    padding-top: 10000000000px;
     11  }
     12 </style>
     13 <div style="column-count:15;">
     14  <div>
     15    text
     16    <div></div>
     17    <div class="float"></div>
     18  </div>
     19  <div class="float"></div>
     20 </div>