HomeSort by relevance Sort by last modified time
    Searched refs:supportsFocus (Results 26 - 44 of 44) sorted by null

12

  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLElement.h 62 virtual bool supportsFocus() const;
HTMLFormControlElement.h 119 virtual bool supportsFocus() const OVERRIDE;
HTMLAreaElement.cpp 210 return supportsFocus() && Element::tabIndex() >= 0;
243 bool HTMLAreaElement::supportsFocus() const
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.
HTMLFrameElementBase.cpp 201 bool HTMLFrameElementBase::supportsFocus() const
HTMLPlugInElement.cpp 222 if (HTMLFrameOwnerElement::supportsFocus() && HTMLFrameOwnerElement::rendererIsFocusable())
HTMLBodyElement.cpp 195 bool HTMLBodyElement::supportsFocus() const
199 return rendererIsEditable() || HTMLElement::supportsFocus();
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...]
HTMLFormControlElement.cpp 310 bool HTMLFormControlElement::supportsFocus() const
362 // Skip the supportsFocus check in HTMLElement.
HTMLMediaElement.h 337 virtual bool supportsFocus() const;
HTMLMediaElement.cpp 391 bool HTMLMediaElement::supportsFocus() const
397 return controls() || HTMLElement::supportsFocus();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGUseElement.h 57 virtual bool supportsFocus() const OVERRIDE { return hasFocusEventListeners(); }
SVGPathElement.h 104 virtual bool supportsFocus() const OVERRIDE { return hasFocusEventListeners(); }
SVGSVGElement.h 53 virtual bool supportsFocus() const OVERRIDE { return hasFocusEventListeners(); }
  /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.h 515 virtual bool supportsFocus() const;
679 // supportsFocus, this method must be called on an up-to-date layout, so it
    [all...]
Element.cpp 255 bool Element::supportsFocus() const
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AccessibilityNodeObject.cpp 742 return node->isElementNode() && toElement(node)->supportsFocus();
    [all...]

Completed in 301 milliseconds

12