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