tor-browser

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

multicol-fill-balance-015.html (668B)


      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://developer.mozilla.org/en-US/docs/Web/HTML/Element/br#deprecated_attributes">
      5 <p>Test passes if there is a filled green square below.</p>
      6 <div id="mc" style="columns:4; width:100px; background:green;">
      7  <div style="float:left; width:10px; height:400px;"></div>
      8  <br clear="all">
      9 </div>
     10 <script src="/resources/testharness.js"></script>
     11 <script src="/resources/testharnessreport.js"></script>
     12 <script>
     13  test(()=> {
     14    assert_equals(mc.offsetHeight, 100);
     15  });
     16 </script>