| Index: Source/web/WebInputElement.cpp
|
| diff --git a/Source/web/WebInputElement.cpp b/Source/web/WebInputElement.cpp
|
| index e53860d4f2fb286562403966b9b81d7ae5b629db..6c8c1acee1d6dc9329be5e4b55455663837444e6 100644
|
| --- a/Source/web/WebInputElement.cpp
|
| +++ b/Source/web/WebInputElement.cpp
|
| @@ -57,6 +57,11 @@ bool WebInputElement::isText() const
|
| return constUnwrap<HTMLInputElement>()->isText();
|
| }
|
|
|
| +bool WebInputElement::isEmailField() const
|
| +{
|
| + return constUnwrap<HTMLInputElement>()->isEmailField();
|
| +}
|
| +
|
| bool WebInputElement::isPasswordField() const
|
| {
|
| return constUnwrap<HTMLInputElement>()->isPasswordField();
|
|
|