forked from mirrors/gecko-dev
Automatic update from web-platform-tests Rename scrollbar-gutter "mirror" to "both-edges" For clarity, the "mirror" value of the scrollbar-gutter property has been renamed to "both-edges". The functionality remains the same. CSS WG: https://github.com/w3c/csswg-drafts/issues/6349 Bug: 710214 Change-Id: I65683037e083f2edee21451f54a9ef34374d0988 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3026774 Reviewed-by: Philip Rogers <pdr@chromium.org> Commit-Queue: Felipe Erias <felipeerias@igalia.com> Cr-Commit-Position: refs/heads/master@{#902287} -- wpt-commits: 43b8e825b9d0bd67f812c08618266e6501b6da6e wpt-pr: 29671
19 lines
802 B
HTML
19 lines
802 B
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>
|