tor-browser

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

multicol-fill-balance-020.html (703B)


      1 <!DOCTYPE html>
      2 <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
      3 <link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1289800">
      4 <div id="mc" style="overflow-x:scroll; columns:2; width:100px; column-fill:auto; height:20000000px;">
      5  <div style="columns:1;">
      6    <div style="height:100px;"></div>
      7    <div style="height:1234567890px;"></div>
      8  </div>
      9 </div>
     10 <script src="/resources/testharness.js"></script>
     11 <script src="/resources/testharnessreport.js"></script>
     12 <script>
     13  test(()=> {
     14    // There should be two columns, i.e. no overflow.
     15    assert_equals(mc.scrollWidth, 100);
     16  }, "Nested balanced multicol with very tall content");
     17 </script>