OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:enclosingNode
(Results
1 - 3
of
3
) sorted by null
/external/webkit/Source/WebCore/editing/
IndentOutdentCommand.cpp
122
Node*
enclosingNode
= enclosingNodeOfType(visibleStartOfParagraph.deepEquivalent(), &isListOrIndentBlockquote);
123
if (!
enclosingNode
|| !
enclosingNode
->parentNode()->rendererIsEditable()) // We can't outdent if there is no place to go!
127
if (
enclosingNode
->hasTagName(olTag)) {
131
if (
enclosingNode
->hasTagName(ulTag)) {
136
// The selection is inside a blockquote i.e.
enclosingNode
is a blockquote
137
VisiblePosition positionInEnclosingBlock = VisiblePosition(firstPositionInNode(
enclosingNode
));
140
VisiblePosition startOfEnclosingBlock = (
enclosingNode
->renderer() &&
enclosingNode
->renderer()->isInline()) ? positionInEnclosingBlock : startOfBlock(positionInEnclosingBlock);
141
VisiblePosition lastPositionInEnclosingBlock = VisiblePosition(lastPositionInNode(
enclosingNode
));
[
all
...]
ReplaceSelectionCommand.cpp
[
all
...]
ApplyStyleCommand.cpp
518
static Node* highestEmbeddingAncestor(Node* startNode, Node*
enclosingNode
)
520
for (Node* n = startNode; n && n !=
enclosingNode
; n = n->parentNode()) {
[
all
...]
Completed in 28 milliseconds