OLD | NEW |
1 This test verifies the touch event handlers tracked for the compositor for eleme
nts with various touch-action settings. | 1 This test verifies the touch event handlers tracked for the compositor for eleme
nts with various touch-action settings. |
2 | 2 |
3 PASS successfullyParsed is true | 3 PASS successfullyParsed is true |
4 | 4 |
5 TEST COMPLETE | 5 TEST COMPLETE |
6 Should start with no handlers | 6 Should start with no handlers |
7 PASS getTouchHandlerCount(document) is 0 | 7 PASS getTouchHandlerCount(document) is 0 |
8 touch-action: auto should not add any handlers | 8 touch-action: auto should not add any handlers |
9 PASS getTouchHandlerCount(document) is 0 | 9 PASS getTouchHandlerCount(document) is 0 |
10 transition from auto should add a handler | 10 transition from auto should add a handler |
(...skipping 10 matching lines...) Expand all Loading... |
21 PASS getTouchHandlerCount(document) is 1 | 21 PASS getTouchHandlerCount(document) is 1 |
22 adding another listener should bump up handler count | 22 adding another listener should bump up handler count |
23 PASS getTouchHandlerCount(document) is 2 | 23 PASS getTouchHandlerCount(document) is 2 |
24 removing node should remove touch-action handler but not others | 24 removing node should remove touch-action handler but not others |
25 PASS getTouchHandlerCount(document) is 1 | 25 PASS getTouchHandlerCount(document) is 1 |
26 re-attaching node should add handler | 26 re-attaching node should add handler |
27 PASS getTouchHandlerCount(document) is 2 | 27 PASS getTouchHandlerCount(document) is 2 |
28 transitioning to auto should decrease handler count | 28 transitioning to auto should decrease handler count |
29 PASS getTouchHandlerCount(document) is 1 | 29 PASS getTouchHandlerCount(document) is 1 |
30 touch-action on div inside frame should add a handler | 30 touch-action on div inside frame should add a handler |
31 PASS getTouchHandlerCount(nestedDocument) is 1 | 31 PASS getTouchHandlerCount(nestedDocument) is 2 |
32 PASS getTouchHandlerCount(document) is 2 | 32 PASS getTouchHandlerCount(document) is 2 |
33 | 33 |
OLD | NEW |