tor-browser

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

multicol-fill-balance-014.html (553B)


      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 <p>Test passes if there is a filled green square below.</p>
      5 <div id="mc" style="columns:4; width:100px; background:green;">
      6  <div style="margin-top:30px; height:70px; break-inside:avoid;"></div>
      7 </div>
      8 <script src="/resources/testharness.js"></script>
      9 <script src="/resources/testharnessreport.js"></script>
     10 <script>
     11  test(()=> {
     12    assert_equals(mc.offsetHeight, 100);
     13  });
     14 </script>