| Index: Source/core/html/FormAssociatedElement.h
|
| diff --git a/Source/core/html/FormAssociatedElement.h b/Source/core/html/FormAssociatedElement.h
|
| index 6889c31c241d10305b82787c120ddeacdf40ed72..6bf09f901472280e02f462cecd2defb8d2fa13c4 100644
|
| --- a/Source/core/html/FormAssociatedElement.h
|
| +++ b/Source/core/html/FormAssociatedElement.h
|
| @@ -74,13 +74,14 @@ public:
|
| bool customError() const;
|
|
|
| // Override functions for patterMismatch, rangeOverflow, rangerUnderflow,
|
| - // stepMismatch, tooLong and valueMissing must call willValidate method.
|
| + // stepMismatch, tooLong, tooShort and valueMissing must call willValidate method.
|
| virtual bool hasBadInput() const;
|
| virtual bool patternMismatch() const;
|
| virtual bool rangeOverflow() const;
|
| virtual bool rangeUnderflow() const;
|
| virtual bool stepMismatch() const;
|
| virtual bool tooLong() const;
|
| + virtual bool tooShort() const;
|
| virtual bool typeMismatch() const;
|
| virtual bool valueMissing() const;
|
| virtual String validationMessage() const;
|
|
|