tor-browser

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

unresolvable-max-height.html (652B)


      1 <!DOCTYPE html>
      2 <title>Unresolvable percentage min-height</title>
      3 <link rel="author" title="Morten Stenshorne" href="mstensho@chromium.org">
      4 <link rel="help" href="https://www.w3.org/TR/CSS22/visudet.html#min-max-heights" title="10.7 Minimum and maximum heights: 'min-height' and 'max-height'">
      5 <script src="/resources/testharness.js"></script>
      6 <script src="/resources/testharnessreport.js"></script>
      7 <script src="/resources/check-layout-th.js"></script>
      8 <div id="container" style="width:100px; height:30000px; max-height:100%;" data-expected-height="30000">
      9  <div style="height:12345px;"></div>
     10 </div>
     11 <script>
     12  checkLayout("#container");
     13 </script>