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('Testing parsing of the shape-outside property.'); | 9 description('Testing parsing of the shape-outside property.'); |
10 | 10 |
(...skipping 19 matching lines...) Expand all Loading... |
30 testNotInheritedShapeProperty, | 30 testNotInheritedShapeProperty, |
31 [// [property, parentValue, childValue, expectedValue] | 31 [// [property, parentValue, childValue, expectedValue] |
32 ["shape-outside", "auto", "rectangle(10px, 20px, 30px, 40px)", "parent: aut
o, child: rectangle(10px, 20px, 30px, 40px, 0px, 0px)"], | 32 ["shape-outside", "auto", "rectangle(10px, 20px, 30px, 40px)", "parent: aut
o, child: rectangle(10px, 20px, 30px, 40px, 0px, 0px)"], |
33 ["shape-outside", "rectangle(10px, 20px, 30px, 40px)", "initial", "parent:
rectangle(10px, 20px, 30px, 40px, 0px, 0px), child: auto"], | 33 ["shape-outside", "rectangle(10px, 20px, 30px, 40px)", "initial", "parent:
rectangle(10px, 20px, 30px, 40px, 0px, 0px), child: auto"], |
34 ["shape-outside", "rectangle(10px, 20px, 30px, 40px)", "", "parent: rectang
le(10px, 20px, 30px, 40px, 0px, 0px), child: auto"], | 34 ["shape-outside", "rectangle(10px, 20px, 30px, 40px)", "", "parent: rectang
le(10px, 20px, 30px, 40px, 0px, 0px), child: auto"], |
35 ["shape-outside", "rectangle(10px, 20px, 30px, 40px)", "inherit", "parent:
rectangle(10px, 20px, 30px, 40px, 0px, 0px), child: rectangle(10px, 20px, 30px,
40px, 0px, 0px)"], | 35 ["shape-outside", "rectangle(10px, 20px, 30px, 40px)", "inherit", "parent:
rectangle(10px, 20px, 30px, 40px, 0px, 0px), child: rectangle(10px, 20px, 30px,
40px, 0px, 0px)"], |
36 ["shape-outside", "", "inherit", "parent: auto, child: auto"], | 36 ["shape-outside", "", "inherit", "parent: auto, child: auto"], |
37 ["shape-outside", "auto", "inherit", "parent: auto, child: auto"]] | 37 ["shape-outside", "auto", "inherit", "parent: auto, child: auto"]] |
38 ); | 38 ); |
39 </script> | 39 </script> |
40 <script src="../../js/resources/js-test-post.js"></script> | |
41 </body> | 40 </body> |
42 </html> | 41 </html> |
OLD | NEW |