HomeSort by relevance Sort by last modified time
    Searched refs:m_lastLeafInserted (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebCore/editing/
ReplaceSelectionCommand.cpp 413 if (m_lastLeafInserted == node)
414 m_lastLeafInserted = node->lastChild() ? node->lastChild() : node->traverseNextSibling();
421 // prepare in case m_firstNodeInserted and/or m_lastLeafInserted get removed
422 // FIXME: shouldn't m_lastLeafInserted be adjusted using traversePreviousNode()?
424 Node* afterLast = m_lastLeafInserted ? m_lastLeafInserted->traverseNextSibling() : 0;
428 // adjust m_firstNodeInserted and m_lastLeafInserted since either or both may have been removed
429 if (m_lastLeafInserted && !m_lastLeafInserted->inDocument())
430 m_lastLeafInserted = afterLast
    [all...]
ReplaceSelectionCommand.h 92 RefPtr<Node> m_lastLeafInserted;

Completed in 931 milliseconds