wpt / css / css-overflow / parsing / scroll-markers-invalid.tentative.html

Status: PASS | Duration: 49ms | Subtests: 8/8 | Open test on wpt.live | wpt.fyi

Data from commit:
a50cb89 wpt: run reference-named files which are themselves tests (#836) (2026-09-03)

SubtestStatusMessage
e.style['scroll-marker-group'] = "before before" should not set the property valuePASS
e.style['scroll-marker-group'] = "after before" should not set the property valuePASS
e.style['scroll-marker-group'] = "after tab" should not set the property valuePASS
e.style['scroll-marker-group'] = "after link" should not set the property valuePASS
e.style['scroll-marker-group'] = "links after" should not set the property valuePASS
e.style['scroll-marker-group'] = "tabs before" should not set the property valuePASS
e.style['scroll-marker-group'] = "after, tabs" should not set the property valuePASS
e.style['scroll-marker-group'] = "after, links" should not set the property valuePASS

/css/css-overflow/parsing/scroll-markers-invalid.tentative.html

<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Overflow: parsing scroll-marker-group with modes invalid values</title>
<link rel="help" href="https://github.com/w3c/csswg-drafts/issues/12122">
<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_invalid_value('scroll-marker-group', 'before before');
  test_invalid_value('scroll-marker-group', 'after before');
  test_invalid_value('scroll-marker-group', 'after tab');
  test_invalid_value('scroll-marker-group', 'after link');
  test_invalid_value('scroll-marker-group', 'links after');
  test_invalid_value('scroll-marker-group', 'tabs before');
  test_invalid_value('scroll-marker-group', 'after, tabs');
  test_invalid_value('scroll-marker-group', 'after, links');
</script>