| OLD | NEW |
| (Empty) | |
| 1 <!DOCTYPE html> |
| 2 <title>CSS Box Alignment: place-content shorthand - Shorthand 'specified' and 'r
esolved' value</title> |
| 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 the place-content's 'specified' and 'resolved
' values serialization." /> |
| 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 <div id="test"></div> |
| 11 <script> |
| 12 var values = ["normal"].concat(contentPositionValues, distributionValues, ba
selineValues); |
| 13 values.forEach(function(alignValue) { |
| 14 [""].concat(values).forEach(function(justifyValue) { |
| 15 var value = (alignValue + " " + justifyValue).trim(); |
| 16 test(function() { |
| 17 checkPlaceShorhand("place-content", alignValue, justifyValue) |
| 18 }, "Checking place-content: " + value); |
| 19 }); |
| 20 }); |
| 21 </script> |
| OLD | NEW |