summaryrefslogtreecommitdiffstats
path: root/WebCore/dom/Document.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/dom/Document.cpp')
-rw-r--r--WebCore/dom/Document.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/WebCore/dom/Document.cpp b/WebCore/dom/Document.cpp
index 3e866a6..c35177a 100644
--- a/WebCore/dom/Document.cpp
+++ b/WebCore/dom/Document.cpp
@@ -2510,19 +2510,6 @@ bool Document::setFocusedNode(PassRefPtr<Node> newFocusedNode)
if (m_inPageCache)
return false;
-#ifdef ANDROID_RESET_SELECTION
- WebCore::Node* oldFocus = frame()->getCacheBuilder().currentFocus();
- if (oldFocus) {
- if (oldFocus->hasTagName(WebCore::HTMLNames::inputTag)) {
- WebCore::HTMLInputElement* input = static_cast<WebCore::HTMLInputElement*>(oldFocus);
- if (input->isTextField())
- input->setSelectionRange(-1, -1);
- } else if (oldFocus->hasTagName(WebCore::HTMLNames::textareaTag)) {
- WebCore::HTMLTextAreaElement* textArea = static_cast<WebCore::HTMLTextAreaElement*>(oldFocus);
- textArea->setSelectionRange(-1, -1);
- }
- }
-#endif
bool focusChangeBlocked = false;
RefPtr<Node> oldFocusedNode = m_focusedNode;
m_focusedNode = 0;