tor-browser

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

quirks-mode-003.html (626B)


      1 <!-- quirks mode -->
      2 <title>Aspect ratio and quirks mode</title>
      3 <link rel="help" href="https://drafts.csswg.org/css-sizing-4/#aspect-ratio">
      4 <link rel="author" title="Google LLC" href="https://www.google.com/">
      5 <meta name="flags" content="dom" />
      6 <script src="/resources/testharness.js"></script>
      7 <script src="/resources/testharnessreport.js"></script>
      8 <script>
      9 onload = function() {
     10  test(function() {
     11    assert_equals(document.body.clientHeight, document.documentElement.clientHeight);
     12  }, "body height should match documentElement due to min-height: auto");
     13 };
     14 </script>
     15 <body style="width: 100px; aspect-ratio: 1/1;">