| Index: Source/core/html/ValidityState.cpp
|
| diff --git a/Source/core/html/ValidityState.cpp b/Source/core/html/ValidityState.cpp
|
| index 23c36a9d6a61218500b2d847e4781480fa6f9b6c..850b8671c6a5887543fba0f00ff682e061248ed1 100644
|
| --- a/Source/core/html/ValidityState.cpp
|
| +++ b/Source/core/html/ValidityState.cpp
|
| @@ -51,6 +51,11 @@ bool ValidityState::tooLong() const
|
| return m_control->tooLong();
|
| }
|
|
|
| +bool ValidityState::tooShort() const
|
| +{
|
| + return m_control->tooShort();
|
| +}
|
| +
|
| bool ValidityState::rangeUnderflow() const
|
| {
|
| return m_control->rangeUnderflow();
|
|
|