Home | History | Annotate | Download | only in editing

Lines Matching refs:endNode

504         Node* endNode = enclosingNodeWithTag(m_frame->selection()->selection().end(), ulTag);
505 if (startNode && endNode && startNode == endNode)
519 Node* endNode = enclosingNodeWithTag(m_frame->selection()->selection().end(), olTag);
520 if (startNode && endNode && startNode == endNode)
986 void Editor::simplifyMarkup(Node* startNode, Node* endNode)
990 if (endNode) {
991 if (startNode->document() != endNode->document())
993 // check if start node is before endNode
995 while (node && node != endNode)
1001 applyCommand(SimplifyMarkupCommand::create(m_frame->document(), startNode, (endNode) ? NodeTraversal::next(endNode) : 0));