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-inside property.'); | 9 description('Testing parsing of the shape-inside property.'); |
10 | 10 |
(...skipping 18 matching lines...) Expand all Loading... |
29 [// [property, parentValue, childValue, expectedValue] | 29 [// [property, parentValue, childValue, expectedValue] |
30 ["shape-inside", "auto", "rectangle(10px, 20px, 30px, 40px)", "parent: auto
, child: rectangle(10px, 20px, 30px, 40px, 0px, 0px)"], | 30 ["shape-inside", "auto", "rectangle(10px, 20px, 30px, 40px)", "parent: auto
, child: rectangle(10px, 20px, 30px, 40px, 0px, 0px)"], |
31 ["shape-inside", "outside-shape", "rectangle(10px, 20px, 30px, 40px)", "par
ent: outside-shape, child: rectangle(10px, 20px, 30px, 40px, 0px, 0px)"], | 31 ["shape-inside", "outside-shape", "rectangle(10px, 20px, 30px, 40px)", "par
ent: outside-shape, child: rectangle(10px, 20px, 30px, 40px, 0px, 0px)"], |
32 ["shape-inside", "rectangle(10px, 20px, 30px, 40px)", "initial", "parent: r
ectangle(10px, 20px, 30px, 40px, 0px, 0px), child: outside-shape"], | 32 ["shape-inside", "rectangle(10px, 20px, 30px, 40px)", "initial", "parent: r
ectangle(10px, 20px, 30px, 40px, 0px, 0px), child: outside-shape"], |
33 ["shape-inside", "rectangle(10px, 20px, 30px, 40px)", "", "parent: rectangl
e(10px, 20px, 30px, 40px, 0px, 0px), child: outside-shape"], | 33 ["shape-inside", "rectangle(10px, 20px, 30px, 40px)", "", "parent: rectangl
e(10px, 20px, 30px, 40px, 0px, 0px), child: outside-shape"], |
34 ["shape-inside", "rectangle(10px, 20px, 30px, 40px)", "inherit", "parent: r
ectangle(10px, 20px, 30px, 40px, 0px, 0px), child: rectangle(10px, 20px, 30px, 4
0px, 0px, 0px)"], | 34 ["shape-inside", "rectangle(10px, 20px, 30px, 40px)", "inherit", "parent: r
ectangle(10px, 20px, 30px, 40px, 0px, 0px), child: rectangle(10px, 20px, 30px, 4
0px, 0px, 0px)"], |
35 ["shape-inside", "", "inherit", "parent: outside-shape, child: outside-shap
e"], | 35 ["shape-inside", "", "inherit", "parent: outside-shape, child: outside-shap
e"], |
36 ["shape-inside", "auto", "inherit", "parent: auto, child: auto"]] | 36 ["shape-inside", "auto", "inherit", "parent: auto, child: auto"]] |
37 ); | 37 ); |
38 </script> | 38 </script> |
39 <script src="../../js/resources/js-test-post.js"></script> | |
40 </body> | 39 </body> |
41 </html> | 40 </html> |
OLD | NEW |