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

  /external/webkit/WebCore/rendering/
TextControlInnerElements.cpp 119 Node* shadowAncestor = shadowAncestorNode();
120 if (shadowAncestor && shadowAncestor->renderer()) {
121 ASSERT(shadowAncestor->renderer()->isTextControl());
123 if (shadowAncestor->renderer()->isTextField())
124 static_cast<HTMLInputElement*>(shadowAncestor)->defaultEventHandler(evt);
126 static_cast<HTMLTextAreaElement*>(shadowAncestor)->defaultEventHandler(evt);
129 toRenderTextControl(shadowAncestor->renderer())->subtreeHasChanged();
138 Node* shadowAncestor = shadowAncestorNode();
139 if (shadowAncestor && shadowAncestor->renderer())
    [all...]
  /external/webkit/WebCore/editing/
VisibleSelection.cpp 508 Node* shadowAncestor = endRoot ? endRoot->shadowAncestorNode() : 0;
509 if (p.isNull() && endRoot && (shadowAncestor != endRoot))
510 p = lastDeepEditingPositionForNode(shadowAncestor);
513 shadowAncestor = root ? root->shadowAncestorNode() : 0;
515 if (p.isNull() && (shadowAncestor != root))
516 p = lastDeepEditingPositionForNode(shadowAncestor);
537 Node* shadowAncestor = startRoot ? startRoot->shadowAncestorNode() : 0;
538 if (p.isNull() && startRoot && (shadowAncestor != startRoot))
539 p = Position(shadowAncestor, 0);
542 shadowAncestor = root ? root->shadowAncestorNode() : 0
    [all...]

Completed in 118 milliseconds