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

  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLFieldSetElement.cpp 77 bool HTMLFieldSetElement::supportsFocus() const
79 return HTMLElement::supportsFocus();
HTMLOutputElement.cpp 60 bool HTMLOutputElement::supportsFocus() const
62 return HTMLElement::supportsFocus();
HTMLSummaryElement.cpp 89 bool HTMLSummaryElement::supportsFocus() const
HTMLFrameElementBase.cpp 201 bool HTMLFrameElementBase::supportsFocus() const
HTMLAreaElement.cpp 210 return supportsFocus() && Element::tabIndex() >= 0;
243 bool HTMLAreaElement::supportsFocus() const
HTMLBodyElement.cpp 195 bool HTMLBodyElement::supportsFocus() const
199 return rendererIsEditable() || HTMLElement::supportsFocus();
HTMLFormControlElement.cpp 310 bool HTMLFormControlElement::supportsFocus() const
362 // Skip the supportsFocus check in HTMLElement.
HTMLAnchorElement.cpp 145 bool HTMLAnchorElement::supportsFocus() const
148 return HTMLElement::supportsFocus();
150 return isLink() || HTMLElement::supportsFocus();
158 return HTMLElement::supportsFocus();
372 // Skip the supportsFocus check in HTMLElement.
HTMLElement.cpp 636 bool HTMLElement::supportsFocus() const
638 // FIXME: supportsFocus() can be called when layout is not up to date.
640 // But supportsFocus must return true when the element is editable, or else
641 // it won't be focusable. Furthermore, supportsFocus cannot just return true
643 return Element::supportsFocus() || (rendererIsEditable() && parentNode() && !parentNode()->rendererIsEditable())
715 if (supportsFocus())
    [all...]
HTMLMediaElement.cpp 391 bool HTMLMediaElement::supportsFocus() const
397 return controls() || HTMLElement::supportsFocus();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAElement.cpp 195 bool SVGAElement::supportsFocus() const
198 return SVGGraphicsElement::supportsFocus();
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
DateTimeFieldElement.cpp 203 bool DateTimeFieldElement::supportsFocus() const
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderThemeChromiumWin.cpp 137 static bool supportsFocus(ControlPart appearance)
422 else if (supportsFocus(appearance) && isFocused(o))
442 else if (supportsFocus(o->style()->appearance()) && isFocused(o))
478 else if (supportsFocus(part) && isFocused(o)) // So does focused
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Element.cpp 255 bool Element::supportsFocus() const
    [all...]

Completed in 421 milliseconds