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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 | 44 |
45 ['text-align-last', 'start'], | 45 ['text-align-last', 'start'], |
46 ['text-justify', 'distribute'], | 46 ['text-justify', 'distribute'], |
47 ]; | 47 ]; |
48 | 48 |
49 properties.forEach(function(args) { | 49 properties.forEach(function(args) { |
50 testStyle(args[0], args[1]); | 50 testStyle(args[0], args[1]); |
51 }); | 51 }); |
52 | 52 |
53 </script> | 53 </script> |
54 <script src="../fast/js/resources/js-test-post.js"></script> | |
55 </body> | 54 </body> |
56 </html> | 55 </html> |
OLD | NEW |