Status: PASS | Duration: 54ms | Subtests: 6/6 | 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 |
|---|---|---|
| e.style['border-block'] = "1px dotted red" should set the property value | PASS | |
| e.style['border-block'] = "double" should set the property value | PASS | |
| e.style['border-block-start'] = "green double thin" should set the property value | PASS | |
| e.style['border-block-start'] = "green" should set the property value | PASS | |
| e.style['border-block-end'] = "thin" should set the property value | PASS | |
| e.style['border-block-end'] = "calc(10px - 0.5em) dotted red" should set the property value | PASS |
/css/css-logical/parsing/border-block-valid.html
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS Logical Properties and Values: parsing border-block with valid values</title> <link rel="help" href="https://drafts.csswg.org/css-logical/#propdef-border-block"> <meta name="assert" content="border-block supports the full grammar '<line-width> || <line-style> || <color>'."> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="/css/support/parsing-testcommon.js"></script> </head> <body> <script> // Similar to css-backgrounds/parsing/border-valid.html test_valid_value("border-block", "1px dotted red"); test_valid_value("border-block", "double", ["double", "medium double"]); test_valid_value("border-block-start", "green double thin", "thin double green"); test_valid_value("border-block-start", "green", ["green", "medium none green"]); test_valid_value("border-block-end", "thin", ["thin", "thin none"]); test_valid_value("border-block-end", "calc(10px - 0.5em) dotted red", "calc(-0.5em + 10px) dotted red"); </script> </body> </html>