Index: third_party/WebKit/Source/core/html/forms/NumberInputType.cpp |
diff --git a/third_party/WebKit/Source/core/html/forms/NumberInputType.cpp b/third_party/WebKit/Source/core/html/forms/NumberInputType.cpp |
index 6ac6bfeae4832588e627fd8ae9c13549d81d8d63..39671d84de3cfd3797c658471cfe333e97e66486 100644 |
--- a/third_party/WebKit/Source/core/html/forms/NumberInputType.cpp |
+++ b/third_party/WebKit/Source/core/html/forms/NumberInputType.cpp |
@@ -157,7 +157,7 @@ bool NumberInputType::SizeShouldIncludeDecoration(int default_size, |
preferred_size = default_size; |
const String step_string = GetElement().FastGetAttribute(stepAttr); |
- if (EqualIgnoringCase(step_string, "any")) |
+ if (DeprecatedEqualIgnoringCase(step_string, "any")) |
return false; |
const Decimal minimum = |