| Index: Source/core/html/forms/RangeInputType.cpp
|
| diff --git a/Source/core/html/forms/RangeInputType.cpp b/Source/core/html/forms/RangeInputType.cpp
|
| index 70a3339a3bfe031276dfe0bc97d01f9ac6da683c..5cf2d3e55810e55efcf0ef11f130a2b728e71ea3 100644
|
| --- a/Source/core/html/forms/RangeInputType.cpp
|
| +++ b/Source/core/html/forms/RangeInputType.cpp
|
| @@ -277,9 +277,9 @@ void RangeInputType::sanitizeValueInResponseToMinOrMaxAttributeChange()
|
| sliderThumbElement()->setPositionFromValue();
|
| }
|
|
|
| -void RangeInputType::setValue(const String& value, bool valueChanged, TextFieldEventBehavior eventBehavior)
|
| +void RangeInputType::setValue(const String& value, bool valueChanged, bool isReset, TextFieldEventBehavior eventBehavior)
|
| {
|
| - InputType::setValue(value, valueChanged, eventBehavior);
|
| + InputType::setValue(value, valueChanged, isReset, eventBehavior);
|
|
|
| if (!valueChanged)
|
| return;
|
|
|