Status: FAIL | Duration: 182ms | Subtests: 0/4 | 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['scrollbar-gutter'] = "auto" should set the property value | FAIL | assert_not_equals: property should be set got disallowed value "" |
| e.style['scrollbar-gutter'] = "stable" should set the property value | FAIL | assert_not_equals: property should be set got disallowed value "" |
| e.style['scrollbar-gutter'] = "stable both-edges" should set the property value | FAIL | assert_not_equals: property should be set got disallowed value "" |
| e.style['scrollbar-gutter'] = "both-edges stable" should set the property value | FAIL | assert_not_equals: property should be set got disallowed value "" |
/css/css-overflow/parsing/scrollbar-gutter-valid.html
<!doctype html> <meta charset="utf-8"> <title>CSS Overflow: parsing valid scrollbar-gutter declarations</title> <link rel="author" title="Felipe Erias Morandeira" href="mailto:felipeerias@gmail.com"/> <link rel="help" href="https://www.w3.org/TR/css-overflow-4/#scollbar-gutter-property"/> <meta name="assert" content="Parsing valid scrollbar-gutter declarations"> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="/css/support/parsing-testcommon.js"></script> <script> test_valid_value("scrollbar-gutter", "auto"); test_valid_value("scrollbar-gutter", "stable"); test_valid_value("scrollbar-gutter", "stable both-edges"); test_valid_value("scrollbar-gutter", "both-edges stable", "stable both-edges"); </script>