| Index: Source/core/html/forms/InputType.h
|
| diff --git a/Source/core/html/forms/InputType.h b/Source/core/html/forms/InputType.h
|
| index 5c8c9b5b89f67c4f5631036289fa3fe770585cad..b369c528db304db10d2c96330efbd36b8f51a88c 100644
|
| --- a/Source/core/html/forms/InputType.h
|
| +++ b/Source/core/html/forms/InputType.h
|
| @@ -77,7 +77,6 @@ public:
|
| virtual bool isInteractiveContent() const;
|
| virtual bool isTextButton() const;
|
| virtual bool isTextField() const;
|
| - virtual bool isTextType() const;
|
|
|
| // Form value functions
|
|
|
| @@ -111,6 +110,7 @@ public:
|
| virtual bool valueMissing(const String&) const;
|
| virtual bool hasBadInput() const;
|
| virtual bool patternMismatch(const String&) const;
|
| + virtual bool tooLong(const String&, HTMLTextFormControlElement::NeedsToCheckDirtyFlag) const;
|
| bool rangeUnderflow(const String&) const;
|
| bool rangeOverflow(const String&) const;
|
| bool isInRange(const String&) const;
|
| @@ -167,6 +167,7 @@ public:
|
| virtual bool isCheckable();
|
| virtual bool isSteppable() const;
|
| virtual bool shouldRespectHeightAndWidthAttributes();
|
| + virtual int maxLength() const;
|
| virtual bool supportsPlaceholder() const;
|
| virtual bool supportsReadOnly() const;
|
| virtual String defaultToolTip() const;
|
|
|