HomeSort by relevance Sort by last modified time
    Searched refs:visibleNode (Results 1 - 3 of 3) sorted by null

  /external/webkit/Source/WebCore/page/
SpatialNavigation.h 104 : visibleNode(0)
118 bool isNull() const { return !visibleNode; }
119 bool inScrollableContainer() const { return visibleNode && enclosingScrollableBox; }
120 bool isFrameOwnerElement() const { return visibleNode && visibleNode->isFrameOwnerElement(); }
121 Document* document() const { return visibleNode ? visibleNode->document() : 0; }
123 // We handle differently visibleNode and FocusableNode to properly handle the areas of imagemaps,
124 // where visibleNode would represent the image element and focusableNode would represent the area element.
125 // In all other cases, visibleNode and focusableNode are one and the same
    [all...]
FocusController.cpp 441 ASSERT(candidate.visibleNode->isElementNode());
442 ASSERT(candidate.visibleNode->renderer());
469 HitTestResult result = candidate.visibleNode->document()->page()->mainFrame()->eventHandler()->hitTestResultAtPoint(IntPoint(x, y), false, true);
470 if (candidate.visibleNode->contains(result.innerNode())) {
474 if (closest.visibleNode->contains(result.innerNode()))
497 current.visibleNode = focusedNode;
546 scrollInDirection(focusCandidate.visibleNode->document(), direction);
557 return advanceFocusDirectionallyInContainer(container, nodeRectInAbsoluteCoordinates(focusCandidate.visibleNode, true), direction, event);
562 if (canScrollInDirection(focusCandidate.visibleNode, direction)) {
564 scrollInDirection(focusCandidate.visibleNode, direction)
    [all...]
SpatialNavigation.cpp 59 : visibleNode(0)
78 visibleNode = image;
84 visibleNode = node;
89 isOffscreen = hasOffscreenRect(visibleNode);
90 isOffscreenAfterScrolling = hasOffscreenRect(visibleNode, direction);
605 if (!firstCandidate.visibleNode->renderer() || !secondCandidate.visibleNode->renderer())
614 if (!firstCandidate.visibleNode->renderer()->isRenderInline() || !secondCandidate.visibleNode->renderer()->isRenderInline())
617 if (firstCandidate.visibleNode->renderer()->containingBlock() != secondCandidate.visibleNode->renderer()->containingBlock()
    [all...]

Completed in 15 milliseconds