| Index: third_party/WebKit/LayoutTests/external/csswg-test/css-align-3/self-alignment/place-self-shorthand-004.html
|
| diff --git a/third_party/WebKit/LayoutTests/external/csswg-test/css-align-3/self-alignment/place-self-shorthand-004.html b/third_party/WebKit/LayoutTests/external/csswg-test/css-align-3/self-alignment/place-self-shorthand-004.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..b9baa6a7d7f22bc2056b3caf579f0a40cbb24357
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/external/csswg-test/css-align-3/self-alignment/place-self-shorthand-004.html
|
| @@ -0,0 +1,33 @@
|
| +<!DOCTYPE html>
|
| +<title>CSS Box Alignment: place-self shorthand - invalid values</title>
|
| +<link rel="author" title="Javier Fernandez" href="mailto:jfernandez@igalia.com" />
|
| +<link rel="help" href="http://www.w3.org/TR/css3-align/#place-self-property" />
|
| +<meta name="assert" content="Check that place-self's invalid values are properly detected at parsing time." />
|
| +<script src="/resources/testharness.js"></script>
|
| +<script src="/resources/testharnessreport.js"></script>
|
| +<script src="../resources/alignment-parsing-utils.js"></script>
|
| +<div id="log"></div>
|
| +<script>
|
| + function checkInvalidValues(value)
|
| + {
|
| + checkPlaceShorthandInvalidValues("place-self", "align-self", "justify-self", value);
|
| + }
|
| +
|
| + test(function() {
|
| + checkInvalidValues("center safe")
|
| + checkInvalidValues("true center")
|
| + }, "Verify overflow keywords are invalid");
|
| +
|
| + test(function() {
|
| + checkInvalidValues("center space-between start")
|
| + }, "Verify fallback values are invalid");
|
| +
|
| + test(function() {
|
| + checkInvalidValues("10px left")
|
| + checkInvalidValues("right 10%")
|
| + }, "Verify numeric values are invalid");
|
| +
|
| + test(function() {
|
| + checkInvalidValues("")
|
| + }, "Verify empty declaration is invalid");
|
| +</script>
|
|
|