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

  /external/chromium_org/third_party/WebKit/Source/core/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...]
SpatialNavigation.cpp 57 : visibleNode(0)
76 visibleNode = image;
82 visibleNode = node;
87 isOffscreen = hasOffscreenRect(visibleNode);
88 isOffscreenAfterScrolling = hasOffscreenRect(visibleNode, direction);
601 if (!firstCandidate.visibleNode->renderer() || !secondCandidate.visibleNode->renderer())
610 if (!firstCandidate.visibleNode->renderer()->isRenderInline() || !secondCandidate.visibleNode->renderer()->isRenderInline())
613 if (firstCandidate.visibleNode->renderer()->containingBlock() != secondCandidate.visibleNode->renderer()->containingBlock()
    [all...]
FocusController.cpp 697 ASSERT(candidate.visibleNode->isElementNode());
698 ASSERT(candidate.visibleNode->renderer());
725 HitTestResult result = candidate.visibleNode->document()->page()->mainFrame()->eventHandler()->hitTestResultAtPoint(IntPoint(x, y), HitTestRequest::ReadOnly | HitTestRequest::Active | HitTestRequest::IgnoreClipping | HitTestRequest::DisallowShadowContent);
726 if (candidate.visibleNode->contains(result.innerNode())) {
730 if (closest.visibleNode->contains(result.innerNode()))
753 current.visibleNode = focusedElement;
801 scrollInDirection(focusCandidate.visibleNode->document(), direction);
812 return advanceFocusDirectionallyInContainer(container, nodeRectInAbsoluteCoordinates(focusCandidate.visibleNode, true), direction);
817 if (canScrollInDirection(focusCandidate.visibleNode, direction)) {
819 scrollInDirection(focusCandidate.visibleNode, direction)
    [all...]

Completed in 73 milliseconds