| OLD | NEW |
| (Empty) | |
| 1 <!DOCTYPE html> |
| 2 <title>CSS Box Alignment: place-content shorthand - single 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/#propdef-place-content" /
> |
| 5 <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'." /> |
| 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"].concat(contentPositionValues, distributionValues, ba
selineValues); |
| 12 values.forEach(function(value) { |
| 13 test(function() { |
| 14 checkPlaceShorhandLonghands("place-content", "align-content", "justi
fy-content", value); |
| 15 }, "Checking place-content: " + value); |
| 16 }); |
| 17 </script> |
| OLD | NEW |