OLD | NEW |
1 This test checks that we correctly update the touch event handler count as event
handlers are added and removed | 1 This test checks that we correctly update the touch event handler count as event
handlers are added and removed |
2 | 2 |
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
4 | 4 |
5 | 5 |
6 Test addEventListener/removeEventListener on the document. | 6 Test addEventListener/removeEventListener on the document. |
7 PASS window.internals.touchEventHandlerCount(document) is 0 | 7 PASS window.internals.touchEventHandlerCount(document) is 0 |
8 PASS window.internals.touchEventHandlerCount(document) is 1 | 8 PASS window.internals.touchEventHandlerCount(document) is 1 |
9 PASS window.internals.touchEventHandlerCount(document) is 2 | 9 PASS window.internals.touchEventHandlerCount(document) is 2 |
10 PASS window.internals.touchEventHandlerCount(document) is 3 | 10 PASS window.internals.touchEventHandlerCount(document) is 3 |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 Test setting touch handlers on a new div. | 71 Test setting touch handlers on a new div. |
72 PASS window.internals.touchEventHandlerCount(document) is 0 | 72 PASS window.internals.touchEventHandlerCount(document) is 0 |
73 PASS window.internals.touchEventHandlerCount(document) is 2 | 73 PASS window.internals.touchEventHandlerCount(document) is 2 |
74 PASS window.internals.touchEventHandlerCount(document) is 2 | 74 PASS window.internals.touchEventHandlerCount(document) is 2 |
75 PASS window.internals.touchEventHandlerCount(document) is 3 | 75 PASS window.internals.touchEventHandlerCount(document) is 3 |
76 PASS window.internals.touchEventHandlerCount(document) is 2 | 76 PASS window.internals.touchEventHandlerCount(document) is 2 |
77 PASS window.internals.touchEventHandlerCount(document) is 2 | 77 PASS window.internals.touchEventHandlerCount(document) is 2 |
78 PASS window.internals.touchEventHandlerCount(document) is 0 | 78 PASS window.internals.touchEventHandlerCount(document) is 0 |
79 Test that nested Documents' touch handlers are properly tracked in their parent
Document. | 79 Test that nested Documents' touch handlers are properly tracked in their parent
Document. |
80 PASS window.internals.touchEventHandlerCount(document) is 1 | 80 PASS window.internals.touchEventHandlerCount(document) is 1 |
| 81 PASS window.internals.touchEventHandlerCount(nestedDocument) is 4 |
| 82 PASS window.internals.touchEventHandlerCount(document) is 4 |
81 PASS window.internals.touchEventHandlerCount(nestedDocument) is 3 | 83 PASS window.internals.touchEventHandlerCount(nestedDocument) is 3 |
82 PASS window.internals.touchEventHandlerCount(document) is 2 | 84 PASS window.internals.touchEventHandlerCount(document) is 3 |
| 85 PASS window.internals.touchEventHandlerCount(nestedDocument) is 4 |
| 86 PASS window.internals.touchEventHandlerCount(document) is 4 |
83 PASS window.internals.touchEventHandlerCount(nestedDocument) is 2 | 87 PASS window.internals.touchEventHandlerCount(nestedDocument) is 2 |
84 PASS window.internals.touchEventHandlerCount(document) is 2 | 88 PASS window.internals.touchEventHandlerCount(document) is 2 |
85 PASS window.internals.touchEventHandlerCount(nestedDocument) is 3 | |
86 PASS window.internals.touchEventHandlerCount(document) is 2 | |
87 PASS window.internals.touchEventHandlerCount(nestedDocument) is 1 | |
88 PASS window.internals.touchEventHandlerCount(document) is 2 | |
89 PASS window.internals.touchEventHandlerCount(document) is 1 | 89 PASS window.internals.touchEventHandlerCount(document) is 1 |
90 PASS successfullyParsed is true | 90 PASS successfullyParsed is true |
91 | 91 |
92 TEST COMPLETE | 92 TEST COMPLETE |
93 | 93 |
OLD | NEW |