tor-browser

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

multicol-fill-balance-027.html (604B)


      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 <div id="multicol" style="columns:2;">
      5  <div style="height:60px;"></div>
      6  <div style="float:left; width:100%; contain:size; height:40px;"></div>
      7  <div style="clear:left; height:90px;"></div>
      8 </div>
      9 <script src="/resources/testharness.js"></script>
     10 <script src="/resources/testharnessreport.js"></script>
     11 <script>
     12  test(()=> {
     13    assert_equals(multicol.offsetHeight, 100);
     14  }, "Make room for the float in the first column");
     15 </script>