HomeSort by relevance Sort by last modified time
    Searched full:rooteditableelement (Results 1 - 25 of 45) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/editing/
TextInsertionBaseCommand.cpp 64 if (startNode->rootEditableElement()) {
67 startNode->rootEditableElement()->dispatchEvent(evt, IGNORE_EXCEPTION);
76 Node* node = selection.rootEditableElement();
FormatBlockCommand.cpp 116 Element* rootEditableElement = range->startContainer()->rootEditableElement();
117 if (!rootEditableElement || commonAncestor->contains(rootEditableElement))
SpellCheckRequester.cpp 51 , m_rootEditableElement(m_checkingRange->startContainer()->rootEditableElement())
209 continuation = request->rootEditableElement() == lastRequest->rootEditableElement()
216 if (request->rootEditableElement() != (*it)->rootEditableElement())
htmlediting.cpp 143 return node->rootEditableElement();
196 return node->rootEditableElement(editableType);
431 Node* rootEditableElement = pos.containerNode()->rootEditableElement();
432 for (Node* n = pos.deprecatedNode(); n && n->rootEditableElement() == rootEditableElement; n = n->parentNode())
446 Node* rootEditableElement = pos.containerNode()->rootEditableElement();
447 for (Node* n = pos.deprecatedNode(); n && n->rootEditableElement() == rootEditableElement; n = n->parentNode()
    [all...]
VisiblePosition.h 86 Element* rootEditableElement() const { return m_deepPosition.isNotNull() ? m_deepPosition.deprecatedNode()->rootEditableElement() : 0; }
InputMethodController.cpp 312 Node* editable = m_frame.selection().rootEditableElement();
370 Element* rootEditableElement = m_frame.selection().rootEditableElement();
371 if (!rootEditableElement)
374 RefPtr<Range> range = selectionOffsets.createRange(*rootEditableElement);
Caret.h 83 bool isContentEditable() const { return m_position.rootEditableElement(); }
RemoveFormatCommand.cpp 89 Node* root = frame->selection().rootEditableElement();
SpellCheckRequester.h 53 PassRefPtr<Element> rootEditableElement() const { return m_rootEditableElement; }
FrameSelection.h 82 Element* rootEditableElement() const { return m_selection.rootEditableElement(); }
DeleteSelectionCommand.cpp 435 RefPtr<ContainerNode> rootEditableElement = node->rootEditableElement();
436 if (rootEditableElement.get()) {
438 appendNode(node, rootEditableElement);
    [all...]
VisibleSelection.h 100 Element* rootEditableElement() const;
Editor.cpp 183 return m_frame.selection().rootEditableElement();
251 return selection.isRange() && selection.rootEditableElement();
268 if (previous.isNull() || previous.deepEquivalent().deprecatedNode()->rootEditableElement() != startContainer->rootEditableElement())
507 spellChecker().chunkAndMarkAllMisspellingsAndBadGrammar(m_frame.selection().rootEditableElement());
    [all...]
ApplyBlockElementCommand.cpp 60 if (!endingSelection().rootEditableElement())
VisibleSelection.cpp 638 Element* editableElement = rootEditableElement();
668 Element* VisibleSelection::rootEditableElement() const
  /external/chromium_org/third_party/WebKit/Source/web/
SpellCheckerClientImpl.cpp 106 if (Element* rootEditableElement = frameSelection.rootEditableElement()) {
107 frame->spellChecker().didBeginEditing(rootEditableElement);
WebNode.cpp 206 WebElement WebNode::rootEditableElement() const
208 return WebElement(m_private->rootEditableElement());
WebRange.cpp 120 Element* selectionRoot = webFrame->selection().rootEditableElement();
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLAnchorElement.cpp 218 setRootEditableElementForSelectionOnMouseDown(document().frame()->selection().rootEditableElement());
251 if (down && document().frame() && document().frame()->selection().rootEditableElement() == rootEditableElement())
470 return eventType == MouseEventWithShiftKey || (eventType == MouseEventWithoutShiftKey && rootEditableElementForSelectionOnMouseDown() != rootEditableElement());
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Position.h 132 Element* rootEditableElement() const
135 return container ? container->rootEditableElement() : 0;
Position.cpp 486 Node* fromRootEditableElement = deprecatedNode()->rootEditableElement();
495 if (currentPos.deprecatedNode()->rootEditableElement() != fromRootEditableElement)
514 Node* fromRootEditableElement = deprecatedNode()->rootEditableElement();
523 if (currentPos.deprecatedNode()->rootEditableElement() != fromRootEditableElement)
    [all...]
  /external/chromium_org/third_party/WebKit/public/web/
WebNode.h 118 BLINK_EXPORT WebElement rootEditableElement() const;
  /external/chromium_org/third_party/WebKit/Source/core/page/
DragController.cpp 488 RefPtr<Element> rootEditableElement = innerFrame->selection().rootEditableElement();
530 if (rootEditableElement) {
531 if (Frame* frame = rootEditableElement->document().frame())
532 frame->eventHandler().updateDragStateAfterEditDragIfNeeded(rootEditableElement.get());
    [all...]
EventHandler.h 120 void updateDragStateAfterEditDragIfNeeded(Element* rootEditableElement);
FocusController.cpp 581 return node->document().frame() && node->rootEditableElement();
607 Node* root = selection.rootEditableElement();
    [all...]

Completed in 705 milliseconds

1 2