| Index: Source/core/dom/Document.cpp | 
| diff --git a/Source/core/dom/Document.cpp b/Source/core/dom/Document.cpp | 
| index 7b2b3e19dc6e22862cbf27c81fa3109808fadf5b..1ce8e0896badc0a3f59fd07e1902be023010503c 100644 | 
| --- a/Source/core/dom/Document.cpp | 
| +++ b/Source/core/dom/Document.cpp | 
| @@ -3246,16 +3246,6 @@ SetFocusedNodeDone: | 
| return !focusChangeBlocked; | 
| } | 
|  | 
| -void Document::getFocusableNodes(Vector<RefPtr<Node> >& nodes) | 
| -{ | 
| -    updateLayout(); | 
| - | 
| -    for (Node* node = firstChild(); node; node = NodeTraversal::next(node)) { | 
| -        if (node->isFocusable()) | 
| -            nodes.append(node); | 
| -    } | 
| -} | 
| - | 
| void Document::setCSSTarget(Element* n) | 
| { | 
| if (m_cssTarget) | 
|  |