Home
last modified time | relevance | path

Searched refs:lastLeafInserted (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/editing/
DReplaceSelectionCommand.h69 …Node& lastLeafInserted() const { ASSERT(m_lastNodeInserted); return m_lastNodeInserted->lastDescen… in lastLeafInserted() function
70 …* pastLastLeaf() const { return m_lastNodeInserted ? NodeTraversal::next(lastLeafInserted()) : 0; } in pastLastLeaf()
DReplaceSelectionCommand.cpp669 Node& lastLeafInserted = insertedNodes.lastLeafInserted(); in removeUnrenderedTextNodesAtEnds() local
670 if (lastLeafInserted.isTextNode() && !nodeHasVisibleRenderText(toText(lastLeafInserted)) in removeUnrenderedTextNodesAtEnds()
671 && !enclosingNodeWithTag(firstPositionInOrBeforeNode(&lastLeafInserted), selectTag) in removeUnrenderedTextNodesAtEnds()
672 && !enclosingNodeWithTag(firstPositionInOrBeforeNode(&lastLeafInserted), scriptTag)) { in removeUnrenderedTextNodesAtEnds()
673 insertedNodes.willRemoveNode(lastLeafInserted); in removeUnrenderedTextNodesAtEnds()
674 removeNode(&lastLeafInserted); in removeUnrenderedTextNodesAtEnds()
1147 m_endOfInsertedContent = lastPositionInOrAfterNode(&insertedNodes.lastLeafInserted()); in doApply()