OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <style> | 3 <style> |
4 * { font-size: 16px; } | 4 * { font-size: 16px; } |
5 div { font-size: 8px; } | 5 div { font-size: 8px; } |
6 </style> | 6 </style> |
7 <body> | 7 <body> |
8 <script src="../js/resources/js-test-pre.js"></script> | 8 <script src="../js/resources/js-test-pre.js"></script> |
9 <script> | 9 <script> |
10 description('Test that clip-path shapes accept different length units'); | 10 description('Test that clip-path shapes accept different length units'); |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 negativeTest("-webkit-clip-path", "circle(0)"); | 102 negativeTest("-webkit-clip-path", "circle(0)"); |
103 negativeTest("-webkit-clip-path", "circle()"); | 103 negativeTest("-webkit-clip-path", "circle()"); |
104 negativeTest("-webkit-clip-path", "polygon(0, 0)"); | 104 negativeTest("-webkit-clip-path", "polygon(0, 0)"); |
105 negativeTest("-webkit-clip-path", "polygon(0 0, 0)"); | 105 negativeTest("-webkit-clip-path", "polygon(0 0, 0)"); |
106 negativeTest("-webkit-clip-path", "polygon(0)"); | 106 negativeTest("-webkit-clip-path", "polygon(0)"); |
107 negativeTest("-webkit-clip-path", "polygon()"); | 107 negativeTest("-webkit-clip-path", "polygon()"); |
108 negativeTest("-webkit-clip-path", "polygon(evenodd)"); | 108 negativeTest("-webkit-clip-path", "polygon(evenodd)"); |
109 negativeTest("-webkit-clip-path", "polygon(nonzero)"); | 109 negativeTest("-webkit-clip-path", "polygon(nonzero)"); |
110 | 110 |
111 </script> | 111 </script> |
112 <script src="../js/resources/js-test-post.js"></script> | |
113 </body> | 112 </body> |
114 </html> | 113 </html> |
OLD | NEW |