HomeSort by relevance Sort by last modified time
    Searched defs:hasCustomFocusLogic (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/html/
BaseMultipleFieldsDateAndTimeInputType.cpp 198 bool BaseMultipleFieldsDateAndTimeInputType::hasCustomFocusLogic() const
HTMLTextAreaElement.cpp 229 bool HTMLTextAreaElement::hasCustomFocusLogic() const
HTMLElement.cpp 614 bool HTMLElement::hasCustomFocusLogic() const
    [all...]
HTMLInputElement.cpp 354 bool HTMLInputElement::hasCustomFocusLogic() const
356 return m_inputType->hasCustomFocusLogic();
    [all...]
InputType.cpp 519 bool InputType::hasCustomFocusLogic() const
HTMLMediaElement.cpp 386 bool HTMLMediaElement::hasCustomFocusLogic() const
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
FocusController.cpp 130 static inline bool hasCustomFocusLogic(Element* element)
132 return element->isHTMLElement() && toHTMLElement(element)->hasCustomFocusLogic();
141 return !element->isFocusable() && isShadowHost(element) && !hasCustomFocusLogic(element);
150 return !element->isKeyboardFocusable() && isShadowHost(element) && !hasCustomFocusLogic(element);
159 return element->isKeyboardFocusable() && isShadowHost(element) && !hasCustomFocusLogic(element);
    [all...]

Completed in 92 milliseconds