Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(291)

Unified Diff: Source/WebCore/html/TextFieldInputType.cpp

Issue 14147005: Remove HTMLInputElement::isTextFormControlFocusable. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/WebCore/html/HTMLInputElement.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « Source/WebCore/html/HTMLInputElement.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698