| Index: third_party/WebKit/LayoutTests/external/csswg-test/css-align-3/default-alignment/place-items-shorthand-002.html
|
| diff --git a/third_party/WebKit/LayoutTests/external/csswg-test/css-align-3/default-alignment/place-items-shorthand-002.html b/third_party/WebKit/LayoutTests/external/csswg-test/css-align-3/default-alignment/place-items-shorthand-002.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..1608b702c93e5ddd0939bfa9f54ed6341e85d5b5
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/external/csswg-test/css-align-3/default-alignment/place-items-shorthand-002.html
|
| @@ -0,0 +1,19 @@
|
| +<!DOCTYPE html>
|
| +<title>CSS Box Alignment: place-items shorthand - multiple values specified</title>
|
| +<link rel="author" title="Javier Fernandez" href="mailto:jfernandez@igalia.com" />
|
| +<link rel="help" href="http://www.w3.org/TR/css3-align/#place-items-property" />
|
| +<meta name="assert" content="Check that setting two values to place-items sets the first one to 'align-items' and the second one to 'justify-items'." />
|
| +<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>
|
| + var values = ["normal", "stretch"].concat(selfPositionValues, baselineValues);
|
| + values.forEach(function(alignValue) {
|
| + ["auto"].concat(values).forEach(function(justifyValue) {
|
| + test(function() {
|
| + checkPlaceShorhandLonghands("place-items", "align-items", "justify-items", alignValue, justifyValue);
|
| + }, "Checking place-items: " + alignValue + " " + justifyValue);
|
| + });
|
| + });
|
| +</script>
|
|
|