tor-browser

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

multicol-fill-balance-022.html (733B)


      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=1308024">
      5 <div id="outer" style="columns:2;">
      6  <div id="inner" style="columns:2; border-top:solid 3px;">
      7    <div style="height:97px; contain:size;"></div>
      8  </div>
      9 </div>
     10 <script src="/resources/testharness.js"></script>
     11 <script src="/resources/testharnessreport.js"></script>
     12 <script>
     13  test(()=> {
     14    assert_equals(outer.offsetHeight, 100);
     15  }, "Nested balancing outer height");
     16  test(()=> {
     17    assert_equals(inner.offsetHeight, 100);
     18  }, "Nested balancing inner height");
     19 </script>