Home
last modified time | relevance | path

Searched refs:FocusNavigationScope (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/page/
DFocusController.h49 class FocusNavigationScope {
53 static FocusNavigationScope focusNavigationScopeOf(Node*);
54 static FocusNavigationScope ownedByNonFocusableFocusScopeOwner(Node*);
55 static FocusNavigationScope ownedByShadowHost(Node*);
56 static FocusNavigationScope ownedByShadowInsertionPoint(HTMLShadowElement*);
57 static FocusNavigationScope ownedByIFrame(HTMLFrameOwnerElement*);
60 explicit FocusNavigationScope(TreeScope*);
94 …Node* findFocusableNodeAcrossFocusScope(FocusDirection, FocusNavigationScope startScope, Node* sta…
95 Node* findFocusableNodeRecursively(FocusDirection, FocusNavigationScope, Node* start);
107 inline Node* findFocusableNode(FocusDirection, FocusNavigationScope, Node* start);
[all …]
DFocusController.cpp67 FocusNavigationScope::FocusNavigationScope(TreeScope* treeScope) in FocusNavigationScope() function in WebCore::FocusNavigationScope
73 Node* FocusNavigationScope::rootNode() const in rootNode()
78 Element* FocusNavigationScope::owner() const in owner()
90 FocusNavigationScope FocusNavigationScope::focusNavigationScopeOf(Node* node) in focusNavigationScopeOf()
98 return FocusNavigationScope(&root->treeScope()); in focusNavigationScopeOf()
101 FocusNavigationScope FocusNavigationScope::ownedByNonFocusableFocusScopeOwner(Node* node) in ownedByNonFocusableFocusScopeOwner()
105 return FocusNavigationScope::ownedByShadowHost(node); in ownedByNonFocusableFocusScopeOwner()
107 return FocusNavigationScope::ownedByShadowInsertionPoint(toHTMLShadowElement(node)); in ownedByNonFocusableFocusScopeOwner()
110 FocusNavigationScope FocusNavigationScope::ownedByShadowHost(Node* node) in ownedByShadowHost()
113 return FocusNavigationScope(toElement(node)->shadow()->youngestShadowRoot()); in ownedByShadowHost()
[all …]