mask-repeat-invalid.html (876B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>CSS Masking Module Level 1: parsing mask-repeat with invalid values</title> 6 <link rel="help" href="https://drafts.fxtf.org/css-masking-1/#the-mask-repeat"> 7 <meta name="assert" content="mask-repeat supports only the grammar."> 8 <!-- 9 <mask-repeat> = <repeat-style># 10 <repeat-style> = repeat-x | repeat-y | [repeat | space | round | no-repeat]{1,2} 11 --> 12 <script src="/resources/testharness.js"></script> 13 <script src="/resources/testharnessreport.js"></script> 14 <script src="/css/support/parsing-testcommon.js"></script> 15 </head> 16 <body> 17 <script> 18 test_invalid_value("mask-repeat", "auto"); 19 test_invalid_value("mask-repeat", "repeat-z"); 20 test_invalid_value("mask-repeat", "repeat undefined"); 21 test_invalid_value("mask-repeat", "undefined repeat"); 22 test_invalid_value("mask-repeat", "repeat; round"); 23 </script> 24 </body> 25 </html>