tor-browser

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

multicol-fill-balance-025.html (819B)


      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-multicol-1/#cf">
      4 <link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1372653">
      5 <link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1376486">
      6 <div id="multicol" style="columns:3;">
      7  <div style="float:left; width:100px;">
      8    <div style="height:20px;"></div>
      9    <div style="break-before:column; height:50px;"></div>
     10  </div>
     11  <div style="clear:both; height:150px;"></div>
     12 </div>
     13 <script src="/resources/testharness.js"></script>
     14 <script src="/resources/testharnessreport.js"></script>
     15 <script>
     16  test(()=> {
     17    assert_equals(multicol.offsetHeight, 100);
     18  }, "Clearance after float with forced break inside");
     19 </script>