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

Unified Diff: Source/WebCore/html/BaseMultipleFieldsDateAndTimeInputType.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 | « no previous file | Source/WebCore/html/HTMLInputElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebCore/html/BaseMultipleFieldsDateAndTimeInputType.cpp
diff --git a/Source/WebCore/html/BaseMultipleFieldsDateAndTimeInputType.cpp b/Source/WebCore/html/BaseMultipleFieldsDateAndTimeInputType.cpp
index c37983f379f0c0bbc8f6575a5a90ad31b2671cdf..dac0c4019104270bbca34936cac34c7bc528bfc7 100644
--- a/Source/WebCore/html/BaseMultipleFieldsDateAndTimeInputType.cpp
+++ b/Source/WebCore/html/BaseMultipleFieldsDateAndTimeInputType.cpp
@@ -405,12 +405,12 @@ bool BaseMultipleFieldsDateAndTimeInputType::hasBadInput() const
bool BaseMultipleFieldsDateAndTimeInputType::isKeyboardFocusable(KeyboardEvent*) const
{
- return element()->isTextFormControlFocusable();
+ return element()->isFocusable();
}
bool BaseMultipleFieldsDateAndTimeInputType::isMouseFocusable() const
{
- return element()->isTextFormControlFocusable();
+ return element()->isFocusable();
}
AtomicString BaseMultipleFieldsDateAndTimeInputType::localeIdentifier() const
« no previous file with comments | « no previous file | Source/WebCore/html/HTMLInputElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698