tor-browser

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

multicol-fill-balance-011.html (682B)


      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 <style>
      5  #container {
      6      columns: 2;
      7      width: 100px;
      8      column-gap: 0;
      9      background: green;
     10  }
     11 </style>
     12 <p>Test passes if there is a filled green square below.</p>
     13 <div id="container" data-expected-height="100">
     14  <div style="padding-bottom:50px; border-bottom:50px solid green;"></div>
     15 </div>
     16 <script src="/resources/testharness.js"></script>
     17 <script src="/resources/testharnessreport.js"></script>
     18 <script src="/resources/check-layout-th.js"></script>
     19 <script>
     20  checkLayout("#container");
     21 </script>