Status: FAIL | Duration: 54ms | Subtests: 0/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['scroll-axis-lock'] = "initial" should set the property value | FAIL | assert_not_equals: property should be set got disallowed value "" |
| e.style['scroll-axis-lock'] = "inherit" should set the property value | FAIL | assert_not_equals: property should be set got disallowed value "" |
| e.style['scroll-axis-lock'] = "unset" should set the property value | FAIL | assert_not_equals: property should be set got disallowed value "" |
| e.style['scroll-axis-lock'] = "revert" should set the property value | FAIL | assert_not_equals: property should be set got disallowed value "" |
| e.style['scroll-axis-lock'] = "auto" should set the property value | FAIL | assert_not_equals: property should be set got disallowed value "" |
| e.style['scroll-axis-lock'] = "none" should set the property value | FAIL | assert_not_equals: property should be set got disallowed value "" |
/css/css-overflow/parsing/scroll-axis-lock-valid.html
<!DOCTYPE html> <meta charset="utf-8"> <title>CSS Overflow: parsing scroll-axis-lock property valid values</title> <link rel="help" href="https://drafts.csswg.org/css-overflow-5/#scroll-axis-lock"> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="/css/support/parsing-testcommon.js"></script> <div id="target"></div> <script> test_valid_value('scroll-axis-lock', 'initial'); test_valid_value('scroll-axis-lock', 'inherit'); test_valid_value('scroll-axis-lock', 'unset'); test_valid_value('scroll-axis-lock', 'revert'); test_valid_value("scroll-axis-lock", 'auto'); test_valid_value("scroll-axis-lock", 'none'); </script>