| 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 PASS window.internals.touchEventHandlerCount(document) is 2 | 64 PASS window.internals.touchEventHandlerCount(document) is 2 |
| 65 PASS window.internals.touchEventHandlerCount(document) is 0 | 65 PASS window.internals.touchEventHandlerCount(document) is 0 |
| 66 Test setting touch handlers on a new div. | 66 Test setting touch handlers on a new div. |
| 67 PASS window.internals.touchEventHandlerCount(document) is 0 | 67 PASS window.internals.touchEventHandlerCount(document) is 0 |
| 68 PASS window.internals.touchEventHandlerCount(document) is 2 | 68 PASS window.internals.touchEventHandlerCount(document) is 2 |
| 69 PASS window.internals.touchEventHandlerCount(document) is 2 | 69 PASS window.internals.touchEventHandlerCount(document) is 2 |
| 70 PASS window.internals.touchEventHandlerCount(document) is 3 | 70 PASS window.internals.touchEventHandlerCount(document) is 3 |
| 71 PASS window.internals.touchEventHandlerCount(document) is 2 | 71 PASS window.internals.touchEventHandlerCount(document) is 2 |
| 72 PASS window.internals.touchEventHandlerCount(document) is 2 | 72 PASS window.internals.touchEventHandlerCount(document) is 2 |
| 73 PASS window.internals.touchEventHandlerCount(document) is 0 | 73 PASS window.internals.touchEventHandlerCount(document) is 0 |
| 74 Test that nested Documents' touch handlers are properly removed from their paren
t Document. | |
| 75 PASS window.internals.touchEventHandlerCount(document) is 0 | |
| 76 PASS window.internals.touchEventHandlerCount(document) is 1 | |
| 77 PASS window.internals.touchEventHandlerCount(document) is 0 | |
| 78 | 74 |
| OLD | NEW |