| Index: third_party/WebKit/LayoutTests/external/csswg-test/css-align-3/self-alignment/place-self-shorthand-002.html
|
| diff --git a/third_party/WebKit/LayoutTests/external/csswg-test/css-align-3/self-alignment/place-self-shorthand-002.html b/third_party/WebKit/LayoutTests/external/csswg-test/css-align-3/self-alignment/place-self-shorthand-002.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..16f807da8cb1a4d1880d42fb24d56adfcf0e81d7
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/external/csswg-test/css-align-3/self-alignment/place-self-shorthand-002.html
|
| @@ -0,0 +1,19 @@
|
| +<!DOCTYPE html>
|
| +<title>CSS Box Alignment: place-self 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-self-property" />
|
| +<meta name="assert" content="Check that setting two values to place-self sets the first one to 'align-self' and the second one to 'justify-self'." />
|
| +<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 = ["auto", "normal", "stretch"].concat(selfPositionValues, baselineValues);
|
| + values.forEach(function(alignValue) {
|
| + values.forEach(function(justifyValue) {
|
| + test(function() {
|
| + checkPlaceShorhandLonghands("place-self", "align-self", "justify-self", alignValue, justifyValue);
|
| + }, "Checking place-self: " + alignValue + " " + justifyValue);
|
| + });
|
| + });
|
| +</script>
|
|
|