Status: FAIL | Duration: 40ms | Subtests: 0/9 | 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-break value 'none' | FAIL | assert_true: column-rule-break doesn't seem to be supported in the computed style expected true got false |
| Property column-rule-break value 'normal' | FAIL | assert_true: column-rule-break doesn't seem to be supported in the computed style expected true got false |
| Property column-rule-break value 'intersection' | FAIL | assert_true: column-rule-break doesn't seem to be supported in the computed style expected true got false |
| Property row-rule-break value 'none' | FAIL | assert_true: row-rule-break doesn't seem to be supported in the computed style expected true got false |
| Property row-rule-break value 'normal' | FAIL | assert_true: row-rule-break doesn't seem to be supported in the computed style expected true got false |
| Property row-rule-break value 'intersection' | FAIL | assert_true: row-rule-break doesn't seem to be supported in the computed style expected true got false |
| Property rule-break value 'none' | FAIL | assert_true: rule-break doesn't seem to be supported in the computed style expected true got false |
| Property rule-break value 'normal' | FAIL | assert_true: rule-break doesn't seem to be supported in the computed style expected true got false |
| Property rule-break value 'intersection' | FAIL | assert_true: rule-break doesn't seem to be supported in the computed style expected true got false |
/css/css-gaps/parsing/rule-break-computed.html
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS Gaps: *-rule-break 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/#break"> <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> <script> const properties = ["column-rule-break", "row-rule-break", "rule-break"]; for (const property of properties) { test_computed_value(property, "none"); test_computed_value(property, "normal"); test_computed_value(property, "intersection"); } </script> </body> </html>