Index: Source/core/html/forms/InputType.cpp |
diff --git a/Source/core/html/forms/InputType.cpp b/Source/core/html/forms/InputType.cpp |
index 8e9c4d59a54ba9aa9d9b9c569eec6b6970d33831..14c49d0205ff9811aa9af20cc8dd7ea09f02647b 100644 |
--- a/Source/core/html/forms/InputType.cpp |
+++ b/Source/core/html/forms/InputType.cpp |
@@ -944,10 +944,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(), DispatchInputAndChangeEvent, IGNORE_EXCEPTION); |
+ setValueAsDecimal(sign > 0 ? stepRange.minimum() : stepRange.maximum(), DispatchChangeEvent, IGNORE_EXCEPTION); |
return; |
} |
- applyStep(current, n, AnyIsDefaultStep, DispatchInputAndChangeEvent, IGNORE_EXCEPTION); |
+ applyStep(current, n, AnyIsDefaultStep, DispatchChangeEvent, IGNORE_EXCEPTION); |
} |
void InputType::countUsageIfVisible(UseCounter::Feature feature) const |