| Index: Source/core/html/forms/InputType.cpp
|
| diff --git a/Source/core/html/forms/InputType.cpp b/Source/core/html/forms/InputType.cpp
|
| index 1da08da15942c3c79ef7482c2af50cf136b5cd88..21306effa358c2729e90dc3466061b4ccba64a27 100644
|
| --- a/Source/core/html/forms/InputType.cpp
|
| +++ b/Source/core/html/forms/InputType.cpp
|
| @@ -760,7 +760,7 @@ void InputType::applyStep(const Decimal& current, int count, AnyStepHandling any
|
| if (count < 0)
|
| newValue = base + ((current - base) / step).floor() * step;
|
| else if (count > 0)
|
| - newValue = base + ((current - base) / step).ceiling() * step;
|
| + newValue = base + ((current - base) / step).ceil() * step;
|
| else
|
| newValue = current;
|
|
|
|
|