2 Use a class to apply touch-action so that we can easily manually check
3 the tests for consistent behavior on IE10 as well.
6 -ms-touch-action: none
;
10 -ms-touch-action: auto
;
14 -ms-touch-action: pan-x
;
18 -ms-touch-action: pan-y
;
22 -ms-touch-action: pan-x pan-y
;
23 touch-action: pan-x pan-y
;
27 -ms-touch-action: manipulation
;
28 touch-action: manipulation
;
31 /* Make it easy to visualize div boundaries */
35 border: 1px solid blue
;
39 [expected-action
=none
]::before
{
40 content: "NONE \2190 ";
42 [expected-action
=auto
]::before
{
43 content: "AUTO \2190 ";
45 [expected-action
=pan-x
]::before
{
46 content: "PAN-X \2190 ";
48 [expected-action
=pan-y
]::before
{
49 content: "PAN-Y \2190 ";
51 [expected-action
=pan-x-y
]::before
{
52 content: "PAN-X PAN-Y \2190 ";
54 [expected-action
=manipulation
]::before
{
55 content: "MANIPULATION \2190 ";
59 /* Leave gap for test to scroll down */
61 /* Ensure pages are scrollable for manual testing */
63 /* Use fixed line height so co-ordinates will be similar in test and browser */
80 /* Note, if changing size, be sure to change kMarkerSize in JS too */
83 background-color: red
;