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="../../../resources/js-test.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 parsing of the CSS shape-image-threshold property.'); | 9 description('Test parsing of the CSS shape-image-threshold property.'); |
10 | 10 |
11 // The test functions and globals used here are defined parsing-test-utils.js. | 11 // The test functions and globals used here are defined parsing-test-utils.js. |
12 | 12 |
13 applyToEachArglist( | 13 applyToEachArglist( |
14 testShapeComputedProperty, | 14 testShapeComputedProperty, |
(...skipping 14 matching lines...) Expand all Loading... |
29 testNotInheritedShapeChildProperty, | 29 testNotInheritedShapeChildProperty, |
30 [// [property, parentValue, childValue, expectedChildValue] | 30 [// [property, parentValue, childValue, expectedChildValue] |
31 ["shape-image-threshold", "0", "0", "0"], | 31 ["shape-image-threshold", "0", "0", "0"], |
32 ["shape-image-threshold", "0", "1", "1"], | 32 ["shape-image-threshold", "0", "1", "1"], |
33 ["shape-image-threshold", "1", "-1", "0"], | 33 ["shape-image-threshold", "1", "-1", "0"], |
34 ["shape-image-threshold", "2", "1", "1"]] | 34 ["shape-image-threshold", "2", "1", "1"]] |
35 ); | 35 ); |
36 </script> | 36 </script> |
37 </body> | 37 </body> |
38 </html> | 38 </html> |
OLD | NEW |