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