Status: PASS | Duration: 50ms | Subtests: 10/10 | 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['max-block-size'] = "auto" should not set the property value | PASS | |
| e.style['max-block-size'] = "min-content available" should not set the property value | PASS | |
| e.style['max-block-size'] = "max-content 10px" should not set the property value | PASS | |
| e.style['max-block-size'] = "20% available" should not set the property value | PASS | |
| e.style['max-block-size'] = "-10px" should not set the property value | PASS | |
| e.style['max-block-size'] = "-20%" should not set the property value | PASS | |
| e.style['max-block-size'] = "60" should not set the property value | PASS | |
| e.style['max-block-size'] = "10px 20%" should not set the property value | PASS | |
| e.style['max-block-size'] = "10px border-box" should not set the property value | PASS | |
| e.style['max-block-size'] = "content-box 20%" should not set the property value | PASS |
/css/css-logical/parsing/max-block-size-invalid.html
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS Logical Properties and Values: parsing max-block-size with invalid values</title> <link rel="help" href="https://drafts.csswg.org/css-logical-1/#dimension-properties"> <meta name="assert" content="max-block-size supports the full grammar 'none | <length-percentage> | min-content | max-content | fit-content(<length-percentage>)'."> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="/css/support/parsing-testcommon.js"></script> </head> <body> <script> test_invalid_value("max-block-size", "auto"); test_invalid_value("max-block-size", "min-content available"); test_invalid_value("max-block-size", "max-content 10px"); test_invalid_value("max-block-size", "20% available"); test_invalid_value("max-block-size", "-10px"); test_invalid_value("max-block-size", "-20%"); test_invalid_value("max-block-size", "60"); test_invalid_value("max-block-size", "10px 20%"); test_invalid_value("max-block-size", "10px border-box"); test_invalid_value("max-block-size", "content-box 20%"); </script> </body> </html>