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

Unified Diff: Source/core/html/ValidityState.h

Issue 435753003: Implement minlength for <input> and <textarea>. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add layout tests for minlength & maxlength together; fix comments Created 6 years, 2 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
Index: Source/core/html/ValidityState.h
diff --git a/Source/core/html/ValidityState.h b/Source/core/html/ValidityState.h
index e79344f44aead57e726ef7607ae2bb61190483e9..ad0afa2b6e90b633a5a9d4a12c5c1a22406aa948 100644
--- a/Source/core/html/ValidityState.h
+++ b/Source/core/html/ValidityState.h
@@ -54,6 +54,7 @@ public:
bool typeMismatch() const;
bool patternMismatch() const;
bool tooLong() const;
+ bool tooShort() const;
bool rangeUnderflow() const;
bool rangeOverflow() const;
bool stepMismatch() const;

Powered by Google App Engine
This is Rietveld 408576698