inheritance.html (794B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>Inheritance of CSS Fill and Stroket properties</title> 4 <link rel="help" href="https://drafts.fxtf.org/fill-stroke/#property-index"> 5 <meta name="assert" content="Properties inherit according to the spec."> 6 <meta name="assert" content="Properties have initial values according to the spec."> 7 <script src="/resources/testharness.js"></script> 8 <script src="/resources/testharnessreport.js"></script> 9 <script src="/css/support/inheritance-testcommon.js"></script> 10 </head> 11 <body> 12 <div id="container"> 13 <div id="target"></div> 14 </div> 15 <script> 16 // https://drafts.fxtf.org/fill-stroke/#text-decor 17 assert_not_inherited('text-decoration-fill', 'match-text', 'red'); 18 assert_not_inherited('text-decoration-stroke', 'match-text', 'red'); 19 </script> 20 </body> 21 </html>