| Index: third_party/WebKit/Source/core/html/forms/RangeInputType.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/forms/RangeInputType.cpp b/third_party/WebKit/Source/core/html/forms/RangeInputType.cpp
|
| index e91b6744e21b01b7d9fde5abab14d158326bc22a..909645a7a971640c093e8e38bf25f1f338ebf767 100644
|
| --- a/third_party/WebKit/Source/core/html/forms/RangeInputType.cpp
|
| +++ b/third_party/WebKit/Source/core/html/forms/RangeInputType.cpp
|
| @@ -182,13 +182,12 @@ void RangeInputType::handleTouchEvent(TouchEvent* event)
|
| TouchList* touches = event->targetTouches();
|
| if (touches->length() == 1) {
|
| sliderThumbElement()->setPositionFromPoint(touches->item(0)->absoluteLocation());
|
| - event->setDefaultHandled();
|
| }
|
| }
|
|
|
| -bool RangeInputType::hasTouchEventHandler() const
|
| +TouchHandlerType RangeInputType::touchEventHandlerType() const
|
| {
|
| - return true;
|
| + return Passive;
|
| }
|
|
|
| void RangeInputType::handleKeydownEvent(KeyboardEvent* event)
|
|
|