Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / events / touch / touch-action-touch-handlers-expected.txt
1 This test verifies the touch event handlers tracked for the compositor for elements with various touch-action settings.
2
3 PASS successfullyParsed is true
4
5 TEST COMPLETE
6 Should start with no handlers
7 PASS getTouchHandlerCount(document) is 0
8 touch-action: auto should not add any handlers
9 PASS getTouchHandlerCount(document) is 0
10 transition from auto should add a handler
11 PASS getTouchHandlerCount(document) is 1
12 transition between non-auto values should maintain handler
13 PASS getTouchHandlerCount(document) is 1
14 multiple touch-action applications shouldn't affect handler count
15 PASS getTouchHandlerCount(document) is 1
16 modifying any unrelated CSS property shouldn't affect handler count
17 PASS getTouchHandlerCount(document) is 1
18 setting display:none should remove handler
19 PASS getTouchHandlerCount(document) is 0
20 and removing it should bring back handler
21 PASS getTouchHandlerCount(document) is 1
22 adding another listener should bump up handler count
23 PASS getTouchHandlerCount(document) is 2
24 removing node should remove touch-action handler but not others
25 PASS getTouchHandlerCount(document) is 1
26 re-attaching node should add handler
27 PASS getTouchHandlerCount(document) is 2
28 transitioning to auto should decrease handler count
29 PASS getTouchHandlerCount(document) is 1
30 touch-action on div inside frame should add a handler
31 PASS getTouchHandlerCount(nestedDocument) is 2
32 PASS getTouchHandlerCount(document) is 2
33