| Index: third_party/WebKit/LayoutTests/fast/events/touch/touch-input-element-change-documents.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/events/touch/touch-input-element-change-documents.html b/third_party/WebKit/LayoutTests/fast/events/touch/touch-input-element-change-documents.html
|
| index 8ccd6cf2e690bb649d554b063b45aa52f8bbc7e2..655b7f333f85390d54d42e8d8aba5fc4850c7603 100644
|
| --- a/third_party/WebKit/LayoutTests/fast/events/touch/touch-input-element-change-documents.html
|
| +++ b/third_party/WebKit/LayoutTests/fast/events/touch/touch-input-element-change-documents.html
|
| @@ -15,12 +15,15 @@ description("This test checks that we correctly update the touch event handler c
|
|
|
| container.appendChild(input);
|
| shouldBe('window.internals.touchEventHandlerCount(document)', '2');
|
| + shouldBe('window.internals.touchEndOrCancelEventHandlerCount(document)', '0');
|
|
|
| input.ontouchend = function() { };
|
| - shouldBe('window.internals.touchEventHandlerCount(document)', '3');
|
| + shouldBe('window.internals.touchEventHandlerCount(document)', '2');
|
| + shouldBe('window.internals.touchEndOrCancelEventHandlerCount(document)', '1');
|
|
|
| input.ontouchend = null;
|
| shouldBe('window.internals.touchEventHandlerCount(document)', '2');
|
| + shouldBe('window.internals.touchEndOrCancelEventHandlerCount(document)', '0');
|
|
|
| document.implementation.createDocument("", "", null).adoptNode(input);
|
| shouldBe('window.internals.touchEventHandlerCount(document)', '0');
|
|
|