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

Unified Diff: third_party/WebKit/Source/core/html/forms/InputType.cpp

Issue 2774723004: Update :in-range/:out-of-range when steppable min/max/value changes. (Closed)
Patch Set: Moved code to InputType class. Created 3 years, 9 months 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
« no previous file with comments | « third_party/WebKit/Source/core/html/forms/InputType.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/html/forms/InputType.cpp
diff --git a/third_party/WebKit/Source/core/html/forms/InputType.cpp b/third_party/WebKit/Source/core/html/forms/InputType.cpp
index 8aa3a4a9274f9b36b6e5790d1aa81875bfd371f8..6fcf15a5adc8404e150a6c5ff8b3410206667172 100644
--- a/third_party/WebKit/Source/core/html/forms/InputType.cpp
+++ b/third_party/WebKit/Source/core/html/forms/InputType.cpp
@@ -297,6 +297,13 @@ bool InputType::isOutOfRange(const String& value) const {
numericValue > stepRange.maximum());
}
+void InputType::inRangeChanged() const {
+ if (isSteppable()) {
+ element().pseudoStateChanged(CSSSelector::PseudoInRange);
+ element().pseudoStateChanged(CSSSelector::PseudoOutOfRange);
+ }
+}
+
bool InputType::stepMismatch(const String& value) const {
if (!isSteppable())
return false;
« no previous file with comments | « third_party/WebKit/Source/core/html/forms/InputType.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698