• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/WebCore-7537.78.1/page/

Lines Matching defs:found

234     // The node we found might be a HTMLFrameOwnerElement, so descend down the tree until we find either:
362 Element* found;
365 found = foundInInnerFocusScope ? foundInInnerFocusScope : findFocusableElementRecursively(direction, scope, currentNode, event);
367 found = findFocusableElementRecursively(direction, scope, currentNode, event);
370 while (!found) {
376 found = owner;
379 found = findFocusableElementRecursively(direction, scope, owner, event);
381 found = findFocusableElementDescendingDownIntoFrameDocument(direction, found, event);
382 return found;
388 Element* found = findFocusableElement(direction, scope, start, event);
389 if (!found)
392 if (!isNonFocusableShadowHost(found, event))
393 return found;
394 Element* foundInInnerFocusScope = findFocusableElementRecursively(direction, FocusNavigationScope::focusNavigationScopeOwnedByShadowHost(found), 0, event);
395 return foundInInnerFocusScope ? foundInInnerFocusScope : findFocusableElementRecursively(direction, scope, found, event);
398 if (isFocusableShadowHost(found, event)) {
399 Element* foundInInnerFocusScope = findFocusableElementRecursively(direction, FocusNavigationScope::focusNavigationScopeOwnedByShadowHost(found), 0, event);
400 return foundInInnerFocusScope ? foundInInnerFocusScope : found;
402 if (isNonFocusableShadowHost(found, event)) {
403 Element* foundInInnerFocusScope = findFocusableElementRecursively(direction, FocusNavigationScope::focusNavigationScopeOwnedByShadowHost(found), 0, event);
404 return foundInInnerFocusScope ? foundInInnerFocusScope :findFocusableElementRecursively(direction, scope, found, event);
406 return found;
847 // We found a new focus node, navigate to it.