OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <script src="../../js/resources/js-test-pre.js"></script> | 4 <script src="../../js/resources/js-test-pre.js"></script> |
5 </head> | 5 </head> |
6 <body> | 6 <body> |
7 <script src="parsing-test-utils.js"></script> | 7 <script src="parsing-test-utils.js"></script> |
8 <script> | 8 <script> |
9 description('Test that CSS Shapes properties with the -webkit prefix alias the u
nprefixed properties.'); | 9 description('Test that CSS Shapes properties with the -webkit prefix alias the u
nprefixed properties.'); |
10 | 10 |
(...skipping 15 matching lines...) Expand all Loading... |
26 testPropertyAlias, | 26 testPropertyAlias, |
27 [// [alias, property, value] | 27 [// [alias, property, value] |
28 ["shape-inside", "shape-inside", "rectangle(0px, 0px, 0px, 0px)"], | 28 ["shape-inside", "shape-inside", "rectangle(0px, 0px, 0px, 0px)"], |
29 ["shape-outside", "shape-outside", "rectangle(0px, 0px, 0px, 0px)"], | 29 ["shape-outside", "shape-outside", "rectangle(0px, 0px, 0px, 0px)"], |
30 ["shape-margin", "shape-margin", "10px"], | 30 ["shape-margin", "shape-margin", "10px"], |
31 ["shape-padding", "shape-padding", "10px"], | 31 ["shape-padding", "shape-padding", "10px"], |
32 ["shape-image-threshold", "shape-image-threshold", "0.5"] | 32 ["shape-image-threshold", "shape-image-threshold", "0.5"] |
33 ] | 33 ] |
34 ); | 34 ); |
35 </script> | 35 </script> |
36 <script src="../../js/resources/js-test-post.js"></script> | |
37 </body> | 36 </body> |
38 </html> | 37 </html> |
OLD | NEW |