inheritance.html (856B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>Inheritance of CSS Contents properties</title> 6 <link rel="help" href="https://drafts.csswg.org/css-content/#propdef-quotes"> 7 <link rel="help" href="https://drafts.csswg.org/css-content/#property-index"> 8 <meta name="assert" content="Properties inherit or not according to the spec."> 9 <meta name="assert" content="Properties have initial values 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_inherited('quotes', 'auto', 'none'); 20 assert_not_inherited('bookmark-level', 'none', '1'); 21 assert_not_inherited('bookmark-state', 'open', 'closed'); 22 </script> 23 </body> 24 </html>