touch-action-invalid.html (694B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>Pointer Events: parsing touch-action with invalid values</title> 5 <link rel="help" href="https://w3c.github.io/pointerevents/#the-touch-action-css-property"> 6 <meta name="assert" content="touch-action supports only the grammar 'auto | none | [ pan-x || pan-y ] | manipulation'."> 7 <script src="/resources/testharness.js"></script> 8 <script src="/resources/testharnessreport.js"></script> 9 <script src="/css/support/parsing-testcommon.js"></script> 10 </head> 11 <body> 12 <script> 13 test_invalid_value("touch-action", "auto none"); 14 test_invalid_value("touch-action", "manipulation pan-x"); 15 test_invalid_value("touch-action", "pan-y pan-x pan-y"); 16 </script> 17 </body> 18 </html>