Status: PASS | Duration: 51ms | Subtests: 9/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 |
|---|---|---|
| e.style['padding-block-start'] = "0" should set the property value | PASS | |
| e.style['padding-block-start'] = "calc(20% + 10px)" should set the property value | PASS | |
| e.style['padding-block-end'] = "10px" should set the property value | PASS | |
| e.style['padding-inline-start'] = "20%" should set the property value | PASS | |
| e.style['padding-inline-end'] = "calc(2em + 2ex)" should set the property value | PASS | |
| e.style['padding-block'] = "10px" should set the property value | PASS | |
| e.style['padding-block'] = "10px 20%" should set the property value | PASS | |
| e.style['padding-inline'] = "20%" should set the property value | PASS | |
| e.style['padding-inline'] = "20% calc(20% + 10px)" should set the property value | PASS |
/css/css-logical/parsing/padding-block-inline-valid.html
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS Logical Properties and Values: parsing padding-block and padding-inline with valid values</title> <link rel="help" href="https://drafts.csswg.org/css-logical/#propdef-padding-block"> <meta name="assert" content="padding-block, padding-inline support the full grammar '<'padding-top'>{1,2}'."> <meta name="assert" content="padding-block, padding-inline longhands support the full grammar '<'padding-top'>'."> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="/css/support/parsing-testcommon.js"></script> </head> <body> <script> test_valid_value("padding-block-start", "0", "0px"); test_valid_value("padding-block-start", "calc(20% + 10px)"); test_valid_value("padding-block-end", "10px"); test_valid_value("padding-inline-start", "20%"); test_valid_value("padding-inline-end", "calc(2em + 2ex)"); test_valid_value("padding-block", "10px"); test_valid_value("padding-block", "10px 20%"); test_valid_value("padding-inline", "20%"); test_valid_value("padding-inline", "20% calc(20% + 10px)"); </script> </body> </html>