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 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
175 negativeTest("-webkit-mask", "none top 20px right 30px center / auto repeat-x sc
roll border-box border-box"); | 175 negativeTest("-webkit-mask", "none top 20px right 30px center / auto repeat-x sc
roll border-box border-box"); |
176 negativeTest("-webkit-mask", "none top 20px top 30px / auto repeat-x scroll bord
er-box border-box"); | 176 negativeTest("-webkit-mask", "none top 20px top 30px / auto repeat-x scroll bord
er-box border-box"); |
177 negativeTest("-webkit-mask", "none top 20px bottom / auto repeat-x scroll border
-box border-box"); | 177 negativeTest("-webkit-mask", "none top 20px bottom / auto repeat-x scroll border
-box border-box"); |
178 | 178 |
179 negativeTest("mask-source-type", "rubbish"); | 179 negativeTest("mask-source-type", "rubbish"); |
180 negativeTest("mask-source-type", ""); | 180 negativeTest("mask-source-type", ""); |
181 negativeTest("mask-source-type", "center"); | 181 negativeTest("mask-source-type", "center"); |
182 negativeTest("mask-source-type", "repeat"); | 182 negativeTest("mask-source-type", "repeat"); |
183 | 183 |
184 </script> | 184 </script> |
185 <script src="../js/resources/js-test-post.js"></script> | |
186 </body> | 185 </body> |
187 </html> | 186 </html> |
OLD | NEW |