inheritance.html (894B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>Inheritance of CSS Tables properties</title> 6 <link rel="help" href="https://drafts.csswg.org/css-tables-3/#property-index"> 7 <meta name="assert" content="Properties inherit or not according to the spec."> 8 <meta name="assert" content="Properties have initial values according to the spec."> 9 <script src="/resources/testharness.js"></script> 10 <script src="/resources/testharnessreport.js"></script> 11 <script src="/css/support/inheritance-testcommon.js"></script> 12 </head> 13 <body> 14 <div id="container"> 15 <div id="target"></div> 16 </div> 17 <script> 18 assert_inherited('border-collapse', 'separate', 'collapse'); 19 assert_inherited('border-spacing', '0px', '10px 20px'); 20 assert_inherited('caption-side', 'top', 'bottom'); 21 assert_inherited('empty-cells', 'show', 'hide'); 22 assert_not_inherited('table-layout', 'auto', 'fixed'); 23 </script> 24 </body> 25 </html>