| Index: Source/WebCore/html/TextFieldInputType.cpp
|
| diff --git a/Source/WebCore/html/TextFieldInputType.cpp b/Source/WebCore/html/TextFieldInputType.cpp
|
| index 1a7fd0716314cdddbd2b50d96a3f4e048a9dc50e..a17f4e75a4b5ad8222aae408daf74ca944a1cf60 100644
|
| --- a/Source/WebCore/html/TextFieldInputType.cpp
|
| +++ b/Source/WebCore/html/TextFieldInputType.cpp
|
| @@ -70,12 +70,12 @@ TextFieldInputType::~TextFieldInputType()
|
|
|
| bool TextFieldInputType::isKeyboardFocusable(KeyboardEvent*) const
|
| {
|
| - return element()->isTextFormControlFocusable();
|
| + return element()->isFocusable();
|
| }
|
|
|
| bool TextFieldInputType::isMouseFocusable() const
|
| {
|
| - return element()->isTextFormControlFocusable();
|
| + return element()->isFocusable();
|
| }
|
|
|
| bool TextFieldInputType::isTextField() const
|
|
|