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

/external/webkit/Source/WebCore/editing/
H A DCompositeEditCommand.cpp774 // preserving the hierarchy up to outerNode.
776 void CompositeEditCommand::cloneParagraphUnderNewElement(Position& start, Position& end, Node* outerNode, Element* blockElement) argument
778 // First we clone the outerNode
780 RefPtr<Node> topNode = outerNode->cloneNode(isTableElement(outerNode));
784 if (start.deprecatedNode() != outerNode) {
787 // Insert each node from innerNode to outerNode (excluded) in a list.
788 for (Node* n = start.deprecatedNode(); n && n != outerNode; n = n->parentNode())
805 // If end is not a descendant of outerNode we need to
808 while (!end.deprecatedNode()->isDescendantOf(outerNode)) {
867 moveParagraphWithClones(const VisiblePosition& startOfParagraphToMove, const VisiblePosition& endOfParagraphToMove, Element* blockElement, Node* outerNode) argument
[all...]

Completed in 98 milliseconds