Status: PASS | Duration: 56ms | 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['background-position-y'] = "left" should not set the property value | PASS | |
| e.style['background-position-y'] = "right" should not set the property value | PASS | |
| e.style['background-position-y'] = "x-start" should not set the property value | PASS | |
| e.style['background-position-y'] = "x-end" should not set the property value | PASS | |
| e.style['background-position-y'] = "center 10px" should not set the property value | PASS | |
| e.style['background-position-y'] = "20% top" should not set the property value | PASS | |
| e.style['background-position-y'] = "bottom top" should not set the property value | PASS | |
| e.style['background-position-y'] = "y-start center" should not set the property value | PASS | |
| e.style['background-position-y'] = "top, center bottom" should not set the property value | PASS |
/css/css-backgrounds/parsing/background-position-y-invalid.html
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS Backgrounds and Borders Module Level 4: parsing background-position-y with invalid values</title> <link rel="help" href="https://drafts.csswg.org/css-backgrounds-4/#propdef-background-position-y"> <meta name="assert" content="background-position-y supports only the grammar '[ center | [ top | bottom | y-start | y-end ]? <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("background-position-y", "left"); test_invalid_value("background-position-y", "right"); test_invalid_value("background-position-y", "x-start"); test_invalid_value("background-position-y", "x-end"); test_invalid_value("background-position-y", "center 10px"); test_invalid_value("background-position-y", "20% top"); test_invalid_value("background-position-y", "bottom top"); test_invalid_value("background-position-y", "y-start center"); test_invalid_value("background-position-y", "top, center bottom"); </script> </body> </html>