OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <body> | 3 <body> |
4 <div id='el'></div> | 4 <div id='el'></div> |
5 | 5 |
6 <script src="../fast/js/resources/js-test-pre.js"></script> | 6 <script src="../fast/js/resources/js-test-pre.js"></script> |
7 <script> | 7 <script> |
8 | 8 |
9 description("Test getting and setting nonstable css properties to non-default va
lues"); | 9 description("Test getting and setting nonstable css properties to non-default va
lues"); |
10 | 10 |
(...skipping 23 matching lines...) Expand all Loading... |
34 ['grid-definition-columns', 'min-content'], | 34 ['grid-definition-columns', 'min-content'], |
35 ['grid-definition-rows', 'max-content'], | 35 ['grid-definition-rows', 'max-content'], |
36 ['grid-column-start', 'auto'], | 36 ['grid-column-start', 'auto'], |
37 ['grid-column-end', '2'], | 37 ['grid-column-end', '2'], |
38 ['grid-row-start', '1'], | 38 ['grid-row-start', '1'], |
39 ['grid-column', 'auto'], | 39 ['grid-column', 'auto'], |
40 ['grid-row', '1'], | 40 ['grid-row', '1'], |
41 ['grid-area', '2'], | 41 ['grid-area', '2'], |
42 ['grid-auto-flow', 'column'], | 42 ['grid-auto-flow', 'column'], |
43 ['grid-template', '"test"'], | 43 ['grid-template', '"test"'], |
| 44 |
| 45 ['text-align-last', 'start'], |
| 46 ['text-justify', 'distribute'], |
44 ]; | 47 ]; |
45 | 48 |
46 properties.forEach(function(args) { | 49 properties.forEach(function(args) { |
47 testStyle(args[0], args[1]); | 50 testStyle(args[0], args[1]); |
48 }); | 51 }); |
49 | 52 |
50 </script> | 53 </script> |
51 <script src="../fast/js/resources/js-test-post.js"></script> | 54 <script src="../fast/js/resources/js-test-post.js"></script> |
52 </body> | 55 </body> |
53 </html> | 56 </html> |
OLD | NEW |