Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 6 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /css/css-overflow/parsing/scroll-target-group-valid.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Overflow: parsing scroll-target-group property valid values</title>
<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>