| 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 8642efce92e9f48d25823d94c16738ebd327937d..6003caf836cee6b34574dee6ba35a5443099edcb 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLInputElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLInputElement.cpp
|
| @@ -280,7 +280,7 @@ void HTMLInputElement::stepUp(int n, ExceptionState& exceptionState) {
|
| }
|
|
|
| void HTMLInputElement::stepDown(int n, ExceptionState& exceptionState) {
|
| - m_inputType->stepUp(-n, exceptionState);
|
| + m_inputType->stepUp(-1.0 * n, exceptionState);
|
| }
|
|
|
| void HTMLInputElement::blur() {
|
|
|