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

  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLPlugInElement.cpp 326 bool HTMLPlugInElement::hasCustomFocusLogic() const
HTMLTextAreaElement.cpp 223 bool HTMLTextAreaElement::hasCustomFocusLogic() const
HTMLElement.cpp 508 bool HTMLElement::hasCustomFocusLogic() const
    [all...]
HTMLInputElement.cpp 324 bool HTMLInputElement::hasCustomFocusLogic() const
326 return m_inputTypeView->hasCustomFocusLogic();
    [all...]
HTMLMediaElement.cpp 398 bool HTMLMediaElement::hasCustomFocusLogic() const
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
InputTypeView.cpp 110 bool InputTypeView::hasCustomFocusLogic() const
BaseMultipleFieldsDateAndTimeInputType.cpp 196 bool BaseMultipleFieldsDateAndTimeInputType::hasCustomFocusLogic() const
InputType.cpp 476 bool InputType::hasCustomFocusLogic() const
  /external/chromium_org/third_party/WebKit/Source/core/page/
FocusController.cpp 163 static inline bool hasCustomFocusLogic(Element* element)
165 return element->isHTMLElement() && toHTMLElement(element)->hasCustomFocusLogic();
175 return !element->isFocusable() && isShadowHost(element) && !hasCustomFocusLogic(element);
185 return !element->isKeyboardFocusable() && isShadowHost(element) && !hasCustomFocusLogic(element);
194 return element->isKeyboardFocusable() && isShadowHost(element) && !hasCustomFocusLogic(element);
    [all...]

Completed in 99 milliseconds