| OLD | NEW |
| (Empty) | |
| 1 <!DOCTYPE html> |
| 2 <title>CSS Box Alignment: place-items shorthand - multiple values specified</tit
le> |
| 3 <link rel="author" title="Javier Fernandez" href="mailto:jfernandez@igalia.com"
/> |
| 4 <link rel="help" href="http://www.w3.org/TR/css3-align/#place-items-property" /> |
| 5 <meta name="assert" content="Check that setting two values to place-items sets t
he first one to 'align-items' and the second one to 'justify-items'." /> |
| 6 <script src="/resources/testharness.js"></script> |
| 7 <script src="/resources/testharnessreport.js"></script> |
| 8 <script src="../resources/alignment-parsing-utils.js"></script> |
| 9 <div id="log"></div> |
| 10 <script> |
| 11 var values = ["normal", "stretch"].concat(selfPositionValues, baselineValues
); |
| 12 values.forEach(function(alignValue) { |
| 13 ["auto"].concat(values).forEach(function(justifyValue) { |
| 14 test(function() { |
| 15 checkPlaceShorhandLonghands("place-items", "align-items", "justif
y-items", alignValue, justifyValue); |
| 16 }, "Checking place-items: " + alignValue + " " + justifyValue); |
| 17 }); |
| 18 }); |
| 19 </script> |
| OLD | NEW |