diff options
Diffstat (limited to 'WebCore/dom/InputElement.h')
-rw-r--r-- | WebCore/dom/InputElement.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/WebCore/dom/InputElement.h b/WebCore/dom/InputElement.h index dc87b3d..56fc99d 100644 --- a/WebCore/dom/InputElement.h +++ b/WebCore/dom/InputElement.h @@ -21,8 +21,8 @@ #ifndef InputElement_h #define InputElement_h -#include "AtomicString.h" #include "PlatformString.h" +#include <wtf/text/AtomicString.h> namespace WebCore { @@ -43,6 +43,9 @@ public: virtual bool isPasswordField() const = 0; virtual bool isSearchField() const = 0; virtual bool isTextField() const = 0; + virtual bool isRadioButton() const = 0; + virtual bool isCheckbox() const = 0; + virtual bool supportsMaxLength() const = 0; virtual bool hasSpinButton() const { return false; } #if ENABLE(INPUT_SPEECH) |