| Index: third_party/WebKit/LayoutTests/external/csswg-test/css-align-3/content-distribution/place-content-shorthand-001.html
|
| diff --git a/third_party/WebKit/LayoutTests/external/csswg-test/css-align-3/content-distribution/place-content-shorthand-001.html b/third_party/WebKit/LayoutTests/external/csswg-test/css-align-3/content-distribution/place-content-shorthand-001.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..6e62621d8f2b8b6e4799ba67b3e01a958a92b8ff
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/external/csswg-test/css-align-3/content-distribution/place-content-shorthand-001.html
|
| @@ -0,0 +1,17 @@
|
| +<!DOCTYPE html>
|
| +<title>CSS Box Alignment: place-content shorthand - single 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/#propdef-place-content" />
|
| +<meta name="assert" content="Check that setting a single value to place-content expands to such value set in both 'align-content' and 'justify-content'." />
|
| +<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"].concat(contentPositionValues, distributionValues, baselineValues);
|
| + values.forEach(function(value) {
|
| + test(function() {
|
| + checkPlaceShorhandLonghands("place-content", "align-content", "justify-content", value);
|
| + }, "Checking place-content: " + value);
|
| + });
|
| +</script>
|
|
|