Index: Source/core/dom/Element.cpp |
diff --git a/Source/core/dom/Element.cpp b/Source/core/dom/Element.cpp |
index 02cc1eeb642396e3c642d3dca102972a857b3fdf..70f1a88567582de6d941846775d5ecf723889b12 100644 |
--- a/Source/core/dom/Element.cpp |
+++ b/Source/core/dom/Element.cpp |
@@ -220,6 +220,11 @@ short Element::tabIndex() const |
return hasRareData() ? elementRareData()->tabIndex() : 0; |
} |
+bool Element::shouldUseInputMethod() |
+{ |
+ return isContentEditable(UserSelectAllIsAlwaysNonEditable); |
+} |
+ |
bool Element::rendererIsFocusable() const |
{ |
// Elements in canvas fallback content are not rendered, but they are allowed to be |