| Index: third_party/WebKit/Source/core/html/HTMLInputElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLInputElement.cpp b/third_party/WebKit/Source/core/html/HTMLInputElement.cpp
|
| index f756cd497958287b3e5296d753c4eaa68457c453..914b449d301f4de3c51f555732dac78b4fbb705a 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLInputElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLInputElement.cpp
|
| @@ -436,9 +436,9 @@ void HTMLInputElement::updateTouchEventHandlerRegistry()
|
| EventHandlerRegistry& registry = document().frameHost()->eventHandlerRegistry();
|
| // TODO(dtapuska): Make this passive touch listener see crbug.com/584438
|
| if (hasTouchEventHandler)
|
| - registry.didAddEventHandler(*this, EventHandlerRegistry::TouchEventBlocking);
|
| + registry.didAddEventHandler(*this, EventHandlerRegistry::TouchStartOrMoveEventBlocking);
|
| else
|
| - registry.didRemoveEventHandler(*this, EventHandlerRegistry::TouchEventBlocking);
|
| + registry.didRemoveEventHandler(*this, EventHandlerRegistry::TouchStartOrMoveEventBlocking);
|
| m_hasTouchEventHandler = hasTouchEventHandler;
|
| }
|
| }
|
|
|