OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:lastLeafInserted
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/editing/
ReplaceSelectionCommand.h
69
Node&
lastLeafInserted
() const { ASSERT(m_lastNodeInserted); return m_lastNodeInserted->lastDescendant(); }
70
Node* pastLastLeaf() const { return m_lastNodeInserted ? NodeTraversal::next(
lastLeafInserted
()) : 0; }
ReplaceSelectionCommand.cpp
669
Node&
lastLeafInserted
= insertedNodes.
lastLeafInserted
();
670
if (
lastLeafInserted
.isTextNode() && !nodeHasVisibleRenderText(toText(
lastLeafInserted
))
671
&& !enclosingNodeWithTag(firstPositionInOrBeforeNode(&
lastLeafInserted
), selectTag)
672
&& !enclosingNodeWithTag(firstPositionInOrBeforeNode(&
lastLeafInserted
), scriptTag)) {
673
insertedNodes.willRemoveNode(
lastLeafInserted
);
674
removeNode(&
lastLeafInserted
);
[
all
...]
Completed in 25 milliseconds