| Index: Source/core/html/forms/TimeInputType.cpp
|
| diff --git a/Source/core/html/forms/TimeInputType.cpp b/Source/core/html/forms/TimeInputType.cpp
|
| index 22d80ef7e1ec230432f778ff8a93a67050fe458a..c8ab269de1b2f946d33f50d9fd29543861a44993 100644
|
| --- a/Source/core/html/forms/TimeInputType.cpp
|
| +++ b/Source/core/html/forms/TimeInputType.cpp
|
| @@ -90,7 +90,7 @@ StepRange TimeInputType::createStepRange(AnyStepHandling anyStepHandling) const
|
| {
|
| DEFINE_STATIC_LOCAL(const StepRange::StepDescription, stepDescription, (timeDefaultStep, timeDefaultStepBase, timeStepScaleFactor, StepRange::ScaledStepValueShouldBeInteger));
|
|
|
| - return InputType::createStepRange(anyStepHandling, 0, Decimal::fromDouble(DateComponents::minimumTime()), Decimal::fromDouble(DateComponents::maximumTime()), stepDescription);
|
| + return InputType::createStepRange(anyStepHandling, timeDefaultStepBase, Decimal::fromDouble(DateComponents::minimumTime()), Decimal::fromDouble(DateComponents::maximumTime()), stepDescription);
|
| }
|
|
|
| bool TimeInputType::parseToDateComponentsInternal(const String& string, DateComponents* out) const
|
|
|