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

  /external/chromium_org/third_party/WebKit/Source/core/page/
SpatialNavigation.h 102 : visibleNode(0)
116 bool isNull() const { return !visibleNode; }
117 bool inScrollableContainer() const { return visibleNode && enclosingScrollableBox; }
118 bool isFrameOwnerElement() const { return visibleNode && visibleNode->isFrameOwnerElement(); }
119 Document* document() const { return visibleNode ? &visibleNode->document() : 0; }
121 // We handle differently visibleNode and FocusableNode to properly handle the areas of imagemaps,
122 // where visibleNode would represent the image element and focusableNode would represent the area element.
123 // In all other cases, visibleNode and focusableNode are one and the same
    [all...]
SpatialNavigation.cpp 56 : visibleNode(0)
75 visibleNode = image;
81 visibleNode = node;
86 isOffscreen = hasOffscreenRect(visibleNode);
87 isOffscreenAfterScrolling = hasOffscreenRect(visibleNode, direction);
600 if (!firstCandidate.visibleNode->renderer() || !secondCandidate.visibleNode->renderer())
609 if (!firstCandidate.visibleNode->renderer()->isRenderInline() || !secondCandidate.visibleNode->renderer()->isRenderInline())
612 if (firstCandidate.visibleNode->renderer()->containingBlock() != secondCandidate.visibleNode->renderer()->containingBlock()
    [all...]
FocusController.cpp 723 ASSERT(candidate.visibleNode->isElementNode());
724 ASSERT(candidate.visibleNode->renderer());
751 HitTestResult result = candidate.visibleNode->document().page()->mainFrame()->eventHandler().hitTestResultAtPoint(IntPoint(x, y), HitTestRequest::ReadOnly | HitTestRequest::Active | HitTestRequest::IgnoreClipping | HitTestRequest::ConfusingAndOftenMisusedDisallowShadowContent);
752 if (candidate.visibleNode->contains(result.innerNode())) {
756 if (closest.visibleNode->contains(result.innerNode()))
778 current.visibleNode = focusedElement;
826 scrollInDirection(&focusCandidate.visibleNode->document(), direction);
837 return advanceFocusDirectionallyInContainer(container, nodeRectInAbsoluteCoordinates(focusCandidate.visibleNode, true), direction);
842 if (canScrollInDirection(focusCandidate.visibleNode, direction)) {
844 scrollInDirection(focusCandidate.visibleNode, direction)
    [all...]

Completed in 516 milliseconds