Home | History | Annotate | Download | only in page

Lines Matching defs:hasCustomFocusLogic

172 static inline bool hasCustomFocusLogic(Element* element)
174 return element->isHTMLElement() && toHTMLElement(element)->hasCustomFocusLogic();
184 return !element->isFocusable() && isShadowHost(element) && !hasCustomFocusLogic(element);
194 return !element->isKeyboardFocusable() && isShadowHost(element) && !hasCustomFocusLogic(element);
203 return element->isKeyboardFocusable() && isShadowHost(element) && !hasCustomFocusLogic(element);