diff options
Diffstat (limited to 'src/3rdparty/webkit/WebCore/html/ValidityState.h')
-rw-r--r-- | src/3rdparty/webkit/WebCore/html/ValidityState.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/3rdparty/webkit/WebCore/html/ValidityState.h b/src/3rdparty/webkit/WebCore/html/ValidityState.h index 1b87f99..1dee306 100644 --- a/src/3rdparty/webkit/WebCore/html/ValidityState.h +++ b/src/3rdparty/webkit/WebCore/html/ValidityState.h @@ -43,9 +43,9 @@ namespace WebCore { bool valueMissing() { return control()->valueMissing(); } bool typeMismatch(); bool patternMismatch() { return control()->patternMismatch(); } - bool tooLong() { return false; } - bool rangeUnderflow() { return false; } - bool rangeOverflow() { return false; } + bool tooLong() { return control()->tooLong(); } + bool rangeUnderflow(); + bool rangeOverflow(); bool stepMismatch() { return false; } bool customError() { return !m_customErrorMessage.isEmpty(); } bool valid(); @@ -56,6 +56,7 @@ namespace WebCore { String m_customErrorMessage; static bool isValidColorString(const String&); + bool isValidEmailAddress(const String&); }; } // namespace WebCore |