Status: PASS | Duration: 32ms | Subtests: 3/3 | 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 |
|---|---|---|
| column-rule round trips properly. | PASS | |
| row-rule round trips properly. | PASS | |
| rule round trips properly. | PASS |
/css/css-gaps/parsing/gap-decorations-rule-shorthand-roundtrip.tentative.html
<!DOCTYPE html> <head> <meta charset="utf-8"> <title>CSS Gap Decorations: *rule properties round trips properly</title> <link rel="help" href="https://drafts.csswg.org/css-multicol/#propdef-column-rule"> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> </head> <div id="target"></div> <script> const rule_properties = ['column-rule', 'row-rule', 'rule'] for(let rule_property of rule_properties) { let div = document.querySelector('#target'); const computed_rule_serialization = window.getComputedStyle(div)[rule_property]; div.style[rule_property] = computed_rule_serialization; test(() => { assert_equals(computed_rule_serialization, div.style[rule_property]); }, `${rule_property} round trips properly.`); } </script>