mirror of
https://github.com/servo/servo.git
synced 2025-06-27 18:43:40 +01:00
29 lines
1.1 KiB
HTML
29 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>CSS Scroll Snap Test: scroll-padding-block with invalid values</title>
|
|
<link rel="help" href="https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-padding-block">
|
|
<meta name="assert" content="scroll-padding-block supports only the grammar '[ auto | <length-percentage> ]{1,2}'.">
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<script src="/css/support/parsing-testcommon.js"></script>
|
|
</head>
|
|
<body>
|
|
<script>
|
|
test_invalid_value("scroll-padding-block-start", "none");
|
|
test_invalid_value("scroll-padding-block-start", "-10px");
|
|
test_invalid_value("scroll-padding-block-start", "10px 20%");
|
|
|
|
|
|
test_invalid_value("scroll-padding-block-end", "none");
|
|
test_invalid_value("scroll-padding-block-end", "-10px");
|
|
test_invalid_value("scroll-padding-block-end", "10px 20%");
|
|
|
|
|
|
test_invalid_value("scroll-padding-block", "none");
|
|
test_invalid_value("scroll-padding-block", "-10px");
|
|
test_invalid_value("scroll-padding-block", "10px 20px 30px 40px 50px");
|
|
</script>
|
|
</body>
|
|
</html>
|