OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:visibleNode
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/page/
SpatialNavigation.h
101
:
visibleNode
(nullptr)
113
bool isNull() const { return !
visibleNode
; }
114
bool inScrollableContainer() const { return
visibleNode
&& enclosingScrollableBox; }
115
bool isFrameOwnerElement() const { return
visibleNode
&&
visibleNode
->isFrameOwnerElement(); }
116
Document* document() const { return
visibleNode
? &
visibleNode
->document() : 0; }
118
// We handle differently
visibleNode
and FocusableNode to properly handle the areas of imagemaps,
119
// where
visibleNode
would represent the image element and focusableNode would represent the area element.
120
// In all other cases,
visibleNode
and focusableNode are one and the same
[
all
...]
SpatialNavigation.cpp
58
:
visibleNode
(nullptr)
75
visibleNode
= image;
81
visibleNode
= node;
86
isOffscreen = hasOffscreenRect(
visibleNode
);
87
isOffscreenAfterScrolling = hasOffscreenRect(
visibleNode
, type);
624
if (!firstCandidate.
visibleNode
->renderer() || !secondCandidate.
visibleNode
->renderer())
633
if (!firstCandidate.
visibleNode
->renderer()->isRenderInline() || !secondCandidate.
visibleNode
->renderer()->isRenderInline())
636
if (firstCandidate.
visibleNode
->renderer()->containingBlock() != secondCandidate.visibleNode->renderer()->containingBlock()
[
all
...]
FocusController.cpp
738
ASSERT(candidate.
visibleNode
->isElementNode());
739
ASSERT(candidate.
visibleNode
->renderer());
767
if (!candidate.
visibleNode
->document().page()->mainFrame()->isLocalFrame())
769
HitTestResult result = candidate.
visibleNode
->document().page()->deprecatedLocalMainFrame()->eventHandler().hitTestResultAtPoint(IntPoint(x, y), HitTestRequest::ReadOnly | HitTestRequest::Active | HitTestRequest::IgnoreClipping);
770
if (candidate.
visibleNode
->contains(result.innerNode())) {
774
if (closest.
visibleNode
->contains(result.innerNode()))
796
current.
visibleNode
= focusedElement;
[
all
...]
Completed in 255 milliseconds