Status: FAIL | Duration: 41ms | Subtests: 0/12 | Open test on wpt.live | wpt.fyi
Data from commit:
a50cb89 wpt: run reference-named files which are themselves tests (#836) (2026-09-03)
| Subtest | Status | Message |
|---|---|---|
| Property column-rule-visibility-items value 'all' | FAIL | assert_true: column-rule-visibility-items doesn't seem to be supported in the computed style expected true got false |
| Property column-rule-visibility-items value 'around' | FAIL | assert_true: column-rule-visibility-items doesn't seem to be supported in the computed style expected true got false |
| Property column-rule-visibility-items value 'between' | FAIL | assert_true: column-rule-visibility-items doesn't seem to be supported in the computed style expected true got false |
| Property column-rule-visibility-items value 'normal' | FAIL | assert_true: column-rule-visibility-items doesn't seem to be supported in the computed style expected true got false |
| Property row-rule-visibility-items value 'all' | FAIL | assert_true: row-rule-visibility-items doesn't seem to be supported in the computed style expected true got false |
| Property row-rule-visibility-items value 'around' | FAIL | assert_true: row-rule-visibility-items doesn't seem to be supported in the computed style expected true got false |
| Property row-rule-visibility-items value 'between' | FAIL | assert_true: row-rule-visibility-items doesn't seem to be supported in the computed style expected true got false |
| Property row-rule-visibility-items value 'normal' | FAIL | assert_true: row-rule-visibility-items doesn't seem to be supported in the computed style expected true got false |
| Property rule-visibility-items value 'all' | FAIL | assert_true: rule-visibility-items doesn't seem to be supported in the computed style expected true got false |
| Property rule-visibility-items value 'around' | FAIL | assert_true: rule-visibility-items doesn't seem to be supported in the computed style expected true got false |
| Property rule-visibility-items value 'between' | FAIL | assert_true: rule-visibility-items doesn't seem to be supported in the computed style expected true got false |
| Property rule-visibility-items value 'normal' | FAIL | assert_true: rule-visibility-items doesn't seem to be supported in the computed style expected true got false |
/css/css-gaps/parsing/rule-visibility-items-computed.html
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS Gaps: *-rule-visibility-items getComputedStyle()</title> <link rel="author" title="Sam Davis Omekara Jr." href="mailto:samomekarajr@microsoft.com"> <link rel="help" href="https://drafts.csswg.org/css-gaps-1"> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="/css/support/computed-testcommon.js"></script> <script src="/css/support/inheritance-testcommon.js"></script> </head> <body> <div id="target"></div> </div> <script> const properties = ["column-rule-visibility-items", "row-rule-visibility-items", "rule-visibility-items"]; for (const property of properties) { test_computed_value(property, "all"); test_computed_value(property, "around"); test_computed_value(property, "between"); test_computed_value(property, "normal"); } </script> </body> </html>