Status: FAIL | Duration: 35ms | Subtests: 0/2 | 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 rule-overlap value 'row-over-column' | FAIL | assert_true: rule-overlap doesn't seem to be supported in the computed style expected true got false |
| Property rule-overlap value 'column-over-row' | FAIL | assert_true: rule-overlap doesn't seem to be supported in the computed style expected true got false |
/css/css-gaps/parsing/rule-overlap-computed.html
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS Gaps: rule-overlap getComputedStyle()</title> <link rel="author" title="Javier Contreras Tenorio" href="mailto:javiercon@microsoft.com"> <link rel="help" href="https://drafts.csswg.org/css-gaps-1/#overlap"> <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> test_computed_value("rule-overlap", "row-over-column"); test_computed_value("rule-overlap", "column-over-row"); </script> </body> </html>