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

  /external/webkit/WebCore/editing/
ReplaceSelectionCommand.cpp 395 if (m_lastLeafInserted == node)
396 m_lastLeafInserted = node->lastChild() ? node->lastChild() : node->traverseNextSibling();
403 // prepare in case m_firstNodeInserted and/or m_lastLeafInserted get removed
404 // FIXME: shouldn't m_lastLeafInserted be adjusted using traversePreviousNode()?
406 Node* afterLast = m_lastLeafInserted ? m_lastLeafInserted->traverseNextSibling() : 0;
410 // adjust m_firstNodeInserted and m_lastLeafInserted since either or both may have been removed
411 if (m_lastLeafInserted && !m_lastLeafInserted->inDocument())
412 m_lastLeafInserted = afterLast
    [all...]
ReplaceSelectionCommand.h 83 RefPtr<Node> m_lastLeafInserted;

Completed in 17 milliseconds