| Index: Source/web/tests/data/touch-action-tests.css
|
| diff --git a/Source/web/tests/data/touch-action-tests.css b/Source/web/tests/data/touch-action-tests.css
|
| old mode 100644
|
| new mode 100755
|
| index 386d132c10d12f3592995f651ade9de9e4cbe62a..b945ac35669cdbc2de1f059da8816c247d84b537
|
| --- a/Source/web/tests/data/touch-action-tests.css
|
| +++ b/Source/web/tests/data/touch-action-tests.css
|
| @@ -10,6 +10,18 @@
|
| -ms-touch-action: auto;
|
| touch-action: auto;
|
| }
|
| +.ta-panx {
|
| + -ms-touch-action: pan-x;
|
| + touch-action: pan-x;
|
| +}
|
| +.ta-pany {
|
| + -ms-touch-action: pan-y;
|
| + touch-action: pan-y;
|
| +}
|
| +.ta-panxy {
|
| + -ms-touch-action: pan-x pan-y;
|
| + touch-action: pan-x pan-y;
|
| +}
|
|
|
| /* Make it easy to visualize div boundaries */
|
| [expected-action] {
|
| @@ -25,6 +37,15 @@
|
| [expected-action=auto]::before {
|
| content: "AUTO \2190 ";
|
| }
|
| +[expected-action=pan-x]::before {
|
| + content: "PAN-X \2190 ";
|
| +}
|
| +[expected-action=pan-y]::before {
|
| + content: "PAN-Y \2190 ";
|
| +}
|
| +[expected-action=pan-x-y]::before {
|
| + content: "PAN-X PAN-Y \2190 ";
|
| +}
|
|
|
| body {
|
| /* Leave gap for test to scroll down */
|
|
|