| Index: Source/core/html/forms/InputType.cpp
|
| diff --git a/Source/core/html/forms/InputType.cpp b/Source/core/html/forms/InputType.cpp
|
| index 474ee5d27cfc21b73e92682f79a6be504185ef32..53ad64344b30b8b3725a155dd2eeea3b29445864 100644
|
| --- a/Source/core/html/forms/InputType.cpp
|
| +++ b/Source/core/html/forms/InputType.cpp
|
| @@ -943,10 +943,10 @@ void InputType::stepUpFromRenderer(int n)
|
| setValueAsDecimal(current, DispatchNoEvent, IGNORE_EXCEPTION);
|
| }
|
| if ((sign > 0 && current < stepRange.minimum()) || (sign < 0 && current > stepRange.maximum())) {
|
| - setValueAsDecimal(sign > 0 ? stepRange.minimum() : stepRange.maximum(), DispatchChangeEvent, IGNORE_EXCEPTION);
|
| + setValueAsDecimal(sign > 0 ? stepRange.minimum() : stepRange.maximum(), DispatchInputAndChangeEvent, IGNORE_EXCEPTION);
|
| return;
|
| }
|
| - applyStep(current, n, AnyIsDefaultStep, DispatchChangeEvent, IGNORE_EXCEPTION);
|
| + applyStep(current, n, AnyIsDefaultStep, DispatchInputAndChangeEvent, IGNORE_EXCEPTION);
|
| }
|
|
|
| void InputType::countUsageIfVisible(UseCounter::Feature feature) const
|
|
|