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

  /external/webkit/Source/WebCore/html/shadow/
TextControlInnerElements.cpp 115 Node* shadowAncestor = shadowAncestorNode();
119 if (shadowAncestor && shadowAncestor != this)
120 shadowAncestor->defaultEventHandler(event);
129 Node* shadowAncestor = shadowAncestorNode();
130 if (shadowAncestor && shadowAncestor->renderer()) {
131 ASSERT(shadowAncestor->renderer()->isTextField() || shadowAncestor->renderer()->isTextArea());
132 multiLine = shadowAncestor->renderer()->isTextArea()
    [all...]
  /external/webkit/Source/WebCore/editing/
VisibleSelection.cpp 502 Node* shadowAncestor = endRoot ? endRoot->shadowAncestorNode() : 0;
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;
532 if (p.isNull() && startRoot && (shadowAncestor != startRoot))
533 p = positionBeforeNode(shadowAncestor);
536 shadowAncestor = root ? root->shadowAncestorNode() : 0
    [all...]

Completed in 49 milliseconds