gecko-dev/testing/web-platform/tests/css/css-scroll-snap/parsing/scroll-padding-valid.html
Hiroyuki Ikezoe e40c79572d Bug 1528640 - Fix expected results that the same component values can be omitted. r=emilio
From '6.7.2 Serializing CSS Values'[1];

 If component values can be omitted or replaced with a shorter representation
 without changing the meaning of the value, omit/replace them.

[1] https://drafts.csswg.org/cssom/#serializing-css-values

Depends on D20103

Differential Revision: https://phabricator.services.mozilla.com/D20104

--HG--
extra : moz-landing-system : lando
2019-02-18 02:33:12 +00:00

60 lines
2.3 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Scroll Snap Test: scroll-padding with valid values</title>
<link rel="help" href="https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-padding">
<meta name="assert" content="scroll-padding supports the full grammar '[ <length-percentage> | auto ]{1,4}'.">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/parsing-testcommon.js"></script>
</head>
<body>
<script>
test_valid_value("scroll-padding-top", "auto");
test_valid_value("scroll-padding-top", "0", "0px");
test_valid_value("scroll-padding-top", "10px");
test_valid_value("scroll-padding-top", "20%");
test_valid_value("scroll-padding-top", "calc(2em + 3ex)");
test_valid_value("scroll-padding-top", "calc(50% + 60px)");
test_valid_value("scroll-padding-right", "auto");
test_valid_value("scroll-padding-right", "0", "0px");
test_valid_value("scroll-padding-right", "10px");
test_valid_value("scroll-padding-right", "20%");
test_valid_value("scroll-padding-right", "calc(2em + 3ex)");
test_valid_value("scroll-padding-right", "calc(50% + 60px)");
test_valid_value("scroll-padding-bottom", "auto");
test_valid_value("scroll-padding-bottom", "0", "0px");
test_valid_value("scroll-padding-bottom", "10px");
test_valid_value("scroll-padding-bottom", "20%");
test_valid_value("scroll-padding-bottom", "calc(2em + 3ex)");
test_valid_value("scroll-padding-bottom", "calc(50% + 60px)");
test_valid_value("scroll-padding-left", "auto");
test_valid_value("scroll-padding-left", "0", "0px");
test_valid_value("scroll-padding-left", "10px");
test_valid_value("scroll-padding-left", "20%");
test_valid_value("scroll-padding-left", "calc(2em + 3ex)");
test_valid_value("scroll-padding-left", "calc(50% + 60px)");
test_valid_value("scroll-padding", "auto");
test_valid_value("scroll-padding", "10px");
test_valid_value("scroll-padding", "0", "0px");
test_valid_value("scroll-padding", "20%");
test_valid_value("scroll-padding", "calc(2em + 3ex)");
test_valid_value("scroll-padding", "1px 2px");
test_valid_value("scroll-padding", "1px 2px 3%");
test_valid_value("scroll-padding", "1px 2px 3% 4px");
test_valid_value("scroll-padding", "1px auto");
test_valid_value("scroll-padding", "0 0 0 0", "0px");
test_valid_value("scroll-padding", "auto auto auto auto", "auto");
</script>
</body>
</html>