Searched defs:shadowAncestor (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/editing/
H A DVisibleSelection.cpp502 Node* shadowAncestor = endRoot ? endRoot->shadowAncestorNode() : 0; local
503 if (p.isNull() && endRoot && (shadowAncestor != endRoot))
504 p = positionAfterNode(shadowAncestor);
507 shadowAncestor = root ? root->shadowAncestorNode() : 0;
509 if (p.isNull() && (shadowAncestor != root))
510 p = positionAfterNode(shadowAncestor);
531 Node* shadowAncestor = startRoot ? startRoot->shadowAncestorNode() : 0; local
532 if (p.isNull() && startRoot && (shadowAncestor != startRoot))
533 p = positionBeforeNode(shadowAncestor);
536 shadowAncestor
[all...]
/external/webkit/Source/WebCore/html/shadow/
H A DTextControlInnerElements.cpp115 Node* shadowAncestor = shadowAncestorNode(); local
119 if (shadowAncestor && shadowAncestor != this)
120 shadowAncestor->defaultEventHandler(event);
129 Node* shadowAncestor = shadowAncestorNode(); local
130 if (shadowAncestor && shadowAncestor->renderer()) {
131 ASSERT(shadowAncestor->renderer()->isTextField() || shadowAncestor->renderer()->isTextArea());
132 multiLine = shadowAncestor
[all...]

Completed in 301 milliseconds