inheritance.html (719B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>Inheritance of CSS aspect-ratio property</title> 6 <link rel="help" href="https://drafts.csswg.org/css-sizing-4/#aspect-ratio"> 7 <link rel="author" title="Sam Weinig" href="mailto:sam@webkit.org"> 8 <meta name="assert" content="Property does not inherit."> 9 <meta name="assert" content="Property has initial value according to the spec."> 10 <script src="/resources/testharness.js"></script> 11 <script src="/resources/testharnessreport.js"></script> 12 <script src="/css/support/inheritance-testcommon.js"></script> 13 </head> 14 <body> 15 <div id="container"> 16 <div id="target"></div> 17 </div> 18 <script> 19 assert_not_inherited('aspect-ratio', 'auto', '2 / 1'); 20 </script> 21 </body> 22 </html>