webkit-perspective-invalid.tentative.html (775B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>Compatibility: parsing -webkit-perspective with invalid values</title> 6 <link rel="help" href="https://compat.spec.whatwg.org/#propdef--webkit-perspective"> 7 <link rel="help" href="https://github.com/whatwg/compat/issues/100"> 8 <meta name="assert" content="-webkit-perspective also supports '<number [0,∞]>' in addition to 'none | <length [0,∞]>', but not 'calc([ <number [0,∞]> ])'"> 9 <script src="/resources/testharness.js"></script> 10 <script src="/resources/testharnessreport.js"></script> 11 <script src="/css/support/parsing-testcommon.js"></script> 12 </head> 13 <body> 14 <script> 15 test_invalid_value("-webkit-perspective", "calc(1000)"); 16 test_invalid_value("-webkit-perspective", "calc(25)"); 17 </script> 18 </body> 19 </html>