rule-visibility-items-computed.html (1017B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>CSS Gaps: *-rule-visibility-items getComputedStyle()</title> 6 <link rel="author" title="Sam Davis Omekara Jr." href="mailto:samomekarajr@microsoft.com"> 7 <link rel="help" href="https://drafts.csswg.org/css-gaps-1"> 8 <script src="/resources/testharness.js"></script> 9 <script src="/resources/testharnessreport.js"></script> 10 <script src="/css/support/computed-testcommon.js"></script> 11 <script src="/css/support/inheritance-testcommon.js"></script> 12 </head> 13 <body> 14 <div id="target"></div> 15 </div> 16 <script> 17 // TODO(samomekarajr): Add tests for shorthand 'rule-visibility-items' once implemented. 18 const properties = ["column-rule-visibility-items", "row-rule-visibility-items"]; 19 for (const property of properties) { 20 test_computed_value(property, "all"); 21 test_computed_value(property, "none"); 22 test_computed_value(property, "around"); 23 test_computed_value(property, "between"); 24 } 25 </script> 26 </body> 27 </html>