quirks-mode-002.html (560B)
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.offsetHeight, document.body.offsetWidth); 12 }, "body height equals width"); 13 }; 14 </script> 15 <body style="aspect-ratio: 1/1;">