4 <script src=
"../../../resources/js-test.js"></script>
7 <script src=
"parsing-test-utils.js"></script>
9 description('Test parsing of the CSS shape-image-threshold property.');
11 // The test functions and globals used here are defined parsing-test-utils.js.
14 testShapeComputedProperty
,
15 [// [property, value, expectedValue]
16 ["shape-image-threshold", "0", "0"],
17 ["shape-image-threshold", "0.5", "0.5"],
18 ["shape-image-threshold", "1", "1"],
19 ["shape-image-threshold", "-0.1", "0"],
20 ["shape-image-threshold", "1.1", "1"],
21 ["shape-image-threshold", "identifier", "0"],
22 ["shape-image-threshold", "\'string\'", "0"]
29 testNotInheritedShapeChildProperty
,
30 [// [property, parentValue, childValue, expectedChildValue]
31 ["shape-image-threshold", "0", "0", "0"],
32 ["shape-image-threshold", "0", "1", "1"],
33 ["shape-image-threshold", "1", "-1", "0"],
34 ["shape-image-threshold", "2", "1", "1"]]