Status: FAIL | Duration: 48ms | Subtests: 0/7 | 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-marker-group'] = "initial" should set the property value | FAIL | assert_not_equals: property should be set got disallowed value "" |
| e.style['scroll-marker-group'] = "inherit" should set the property value | FAIL | assert_not_equals: property should be set got disallowed value "" |
| e.style['scroll-marker-group'] = "unset" should set the property value | FAIL | assert_not_equals: property should be set got disallowed value "" |
| e.style['scroll-marker-group'] = "revert" should set the property value | FAIL | assert_not_equals: property should be set got disallowed value "" |
| e.style['scroll-marker-group'] = "none" should set the property value | FAIL | assert_not_equals: property should be set got disallowed value "" |
| e.style['scroll-marker-group'] = "before" should set the property value | FAIL | assert_not_equals: property should be set got disallowed value "" |
| e.style['scroll-marker-group'] = "after" should set the property value | FAIL | assert_not_equals: property should be set got disallowed value "" |
/css/css-overflow/parsing/scroll-markers-valid.html
<!doctype html> <meta charset="utf-8"> <title>CSS Overflow: parsing scroll-marker-group with valid values</title> <link rel="help" href="https://drafts.csswg.org/css-overflow-5/#scroll-marker-group-property"> <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-marker-group', 'initial'); test_valid_value('scroll-marker-group', 'inherit'); test_valid_value('scroll-marker-group', 'unset'); test_valid_value('scroll-marker-group', 'revert'); test_valid_value("scroll-marker-group", "none"); test_valid_value("scroll-marker-group", "before"); test_valid_value("scroll-marker-group", "after"); </script>