tor-browser

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

overflow-scroll-in-multicol-crash.html (525B)


      1 <!DOCTYPE html>
      2 <link rel=help href="https://bugs.chromium.org/p/chromium/issues/detail?id=1240384">
      3 <style>
      4  #multicol {
      5    column-count: 2;
      6    column-fill: auto;
      7    column-gap: 5px;
      8    width: 200px;
      9    height: 100px;
     10  }
     11  #container {
     12    position: relative;
     13    box-sizing: border-box;
     14    width: 100px;
     15    overflow: scroll;
     16  }
     17 </style>
     18 <p>PASS if no crash.</p>
     19 <div id="multicol">
     20  <div id="container">
     21    <div style="width: 100px; height: 200px;"></div>
     22    <div style="height: 100px;"></div>
     23  </div>
     24 </div>