Searched defs:rootEditableElement (Results 1 - 12 of 12) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DSpellCheckRequester.h52 PassRefPtrWillBeRawPtr<Element> rootEditableElement() const { return m_rootEditableElement; } function in class:blink::FINAL
H A DVisiblePosition.h89 Element* rootEditableElement() const { return m_deepPosition.isNotNull() ? m_deepPosition.deprecatedNode()->rootEditableElement() : 0; } function in class:blink::FINAL
H A DDeleteSelectionCommand.cpp435 RefPtrWillBeRawPtr<Element> rootEditableElement = node->rootEditableElement(); local
436 if (rootEditableElement.get()) {
438 appendNode(node, rootEditableElement);
763 Element* rootElement = node->rootEditableElement();
791 bool rootWillStayOpenWithoutPlaceholder = downstreamEnd.containerNode() == downstreamEnd.containerNode()->rootEditableElement()
792 || (downstreamEnd.containerNode()->isTextNode() && downstreamEnd.containerNode()->parentNode() == downstreamEnd.containerNode()->rootEditableElement());
H A DFrameSelection.h93 Element* rootEditableElement() const { return m_selection.rootEditableElement(); } function in class:blink::FINAL
H A DVisibleSelection.cpp713 Element* editableElement = rootEditableElement();
743 Element* VisibleSelection::rootEditableElement() const function in class:blink::VisibleSelection
H A DReplaceSelectionCommand.cpp91 PassRefPtrWillBeRawPtr<HTMLElement> insertFragmentForTestRendering(Element* rootEditableElement);
159 RefPtrWillBeRawPtr<Element> editableRoot = selection.rootEditableElement();
259 PassRefPtrWillBeRawPtr<HTMLElement> ReplacementFragment::insertFragmentForTestRendering(Element* rootEditableElement) argument
265 rootEditableElement->appendChild(holder.get());
926 if (!selection.rootEditableElement())
954 Element* currentRoot = selection.rootEditableElement();
H A Dhtmlediting.cpp145 return node->rootEditableElement();
198 return node->rootEditableElement(editableType);
454 Element* rootEditableElement = pos.containerNode()->rootEditableElement(); local
455 for (Node* n = pos.deprecatedNode(); n && n->rootEditableElement() == rootEditableElement; n = n->parentNode()) {
471 Element* rootEditableElement = pos.containerNode()->rootEditableElement(); local
472 for (Node* n = pos.deprecatedNode(); n && n->rootEditableElement() == rootEditableElement;
646 Element* rootEditableElement = node ? node->rootEditableElement() : 0; local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DPosition.h132 Element* rootEditableElement() const function in class:blink::Position
135 return container ? container->rootEditableElement() : 0;
H A DNode.cpp1176 Element* Node::rootEditableElement(EditableType editableType) const function in class:blink::Node
1183 return rootEditableElement();
1186 Element* Node::rootEditableElement() const function in class:blink::Node
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebNode.cpp198 WebElement WebNode::rootEditableElement() const function in class:blink::WebNode
200 return WebElement(m_private->rootEditableElement());
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DDragController.cpp487 RefPtrWillBeRawPtr<Element> rootEditableElement = innerFrame->selection().rootEditableElement(); local
529 if (rootEditableElement) {
530 if (LocalFrame* frame = rootEditableElement->document().frame())
531 frame->eventHandler().updateDragStateAfterEditDragIfNeeded(rootEditableElement.get());
H A DEventHandler.cpp2750 if (start.deprecatedNode() && (selection.rootEditableElement() || selection.isRange())) {
3196 void EventHandler::updateDragStateAfterEditDragIfNeeded(Element* rootEditableElement) argument
3200 dragState().m_dragSrc = rootEditableElement;

Completed in 6645 milliseconds