Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(543)

Unified Diff: Source/core/html/forms/NumberInputType.cpp

Issue 83413002: Derive the step base for an input element as (now) specified. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/html/forms/NumberInputType.cpp
diff --git a/Source/core/html/forms/NumberInputType.cpp b/Source/core/html/forms/NumberInputType.cpp
index 152df244f7ee0c6a3046a1a7aa7a61b165bb9231..8212eaebcb57e37390ff5cc08c590d53dd4f6ee7 100644
--- a/Source/core/html/forms/NumberInputType.cpp
+++ b/Source/core/html/forms/NumberInputType.cpp
@@ -165,11 +165,12 @@ bool NumberInputType::typeMismatch() const
StepRange NumberInputType::createStepRange(AnyStepHandling anyStepHandling) const
{
DEFINE_STATIC_LOCAL(const StepRange::StepDescription, stepDescription, (numberDefaultStep, numberDefaultStepBase, numberStepScaleFactor));
- const Decimal stepBase = parseToDecimalForNumberType(element().fastGetAttribute(minAttr), numberDefaultStepBase);
+
+ const Decimal stepBase = parseToNumber(element().fastGetAttribute(minAttr), element().fastGetAttribute(valueAttr), numberDefaultStepBase);
// FIXME: We should use numeric_limits<double>::max for number input type.
const Decimal floatMax = Decimal::fromDouble(numeric_limits<float>::max());
- const Decimal minimum = parseToNumber(element().fastGetAttribute(minAttr), -floatMax);
- const Decimal maximum = parseToNumber(element().fastGetAttribute(maxAttr), floatMax);
+ const Decimal minimum = parseToNumber(element().fastGetAttribute(minAttr), String(), -floatMax);
+ const Decimal maximum = parseToNumber(element().fastGetAttribute(maxAttr), String(), floatMax);
const Decimal step = StepRange::parseStep(anyStepHandling, stepDescription, element().fastGetAttribute(stepAttr));
return StepRange(stepBase, minimum, maximum, step, stepDescription);
}
@@ -212,8 +213,15 @@ void NumberInputType::handleKeydownEvent(KeyboardEvent* event)
TextFieldInputType::handleKeydownEvent(event);
}
-Decimal NumberInputType::parseToNumber(const String& src, const Decimal& defaultValue) const
+Decimal NumberInputType::parseToNumber(const String& src, const String& alternative, const Decimal& defaultValue) const
{
+ if (!alternative.isEmpty()) {
+ Decimal result = parseToDecimalForNumberType(src, Decimal::nan());
+ if (!result.isFinite())
+ result = parseToDecimalForNumberType(alternative, defaultValue);
+
+ return result;
+ }
return parseToDecimalForNumberType(src, defaultValue);
}

Powered by Google App Engine
This is Rietveld 408576698