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

  /external/webkit/WebCore/html/
HTMLFieldSetElement.cpp 51 bool HTMLFieldSetElement::supportsFocus() const
53 return HTMLElement::supportsFocus();
HTMLLegendElement.cpp 45 bool HTMLLegendElement::supportsFocus() const
47 return HTMLElement::supportsFocus();
HTMLPlugInElement.cpp 181 bool HTMLPlugInElement::supportsFocus() const
HTMLFrameElementBase.cpp 222 bool HTMLFrameElementBase::supportsFocus() const
HTMLOptGroupElement.cpp 47 bool HTMLOptGroupElement::supportsFocus() const
49 return HTMLElement::supportsFocus();
55 return supportsFocus() && renderStyle() && renderStyle()->display() != NONE;
HTMLAreaElement.cpp 192 return supportsFocus();
197 return supportsFocus();
226 bool HTMLAreaElement::supportsFocus() const
HTMLOptionElement.cpp 69 bool HTMLOptionElement::supportsFocus() const
71 return HTMLElement::supportsFocus();
77 return supportsFocus() && renderStyle() && renderStyle()->display() != NONE;
HTMLAnchorElement.cpp 70 bool HTMLAnchorElement::supportsFocus() const
73 return HTMLElement::supportsFocus();
75 return isLink() || HTMLElement::supportsFocus();
84 return HTMLElement::supportsFocus();
359 // Skip the supportsFocus check in HTMLElement.
HTMLFormControlElement.cpp 264 bool HTMLFormControlElement::supportsFocus() const
298 // Skip the supportsFocus check in HTMLElement.
HTMLElement.cpp 648 bool HTMLElement::supportsFocus() const
650 return Element::supportsFocus() || (isContentEditable() && parent() && !parent()->isContentEditable());
779 if (supportsFocus())
    [all...]
  /external/webkit/WebCore/wml/
WMLFormControlElement.cpp 42 bool WMLFormControlElement::supportsFocus() const
WMLAElement.cpp 74 bool WMLAElement::supportsFocus() const
76 return isLink() || WMLElement::supportsFocus();
  /external/webkit/WebCore/platform/haiku/
RenderThemeHaiku.cpp 58 static bool supportsFocus(ControlPart appearance)
77 return supportsFocus(style->appearance());
  /external/webkit/WebCore/svg/
SVGAElement.cpp 181 bool SVGAElement::supportsFocus() const
184 return SVGStyledTransformableElement::supportsFocus();
  /external/webkit/WebCore/platform/wx/
RenderThemeWx.cpp 110 bool supportsFocus(ControlPart) const;
245 bool RenderThemeWx::supportsFocus(ControlPart part) const
289 if (supportsFocus(part) && isFocused(o))
352 if (supportsFocus(o->style()->appearance()) && isFocused(o))
381 if (supportsFocus(o->style()->appearance()) && isFocused(o))
  /external/webkit/WebCore/platform/android/
RenderThemeAndroid.cpp 188 bool RenderThemeAndroid::supportsFocus(ControlPart appearance)
  /external/webkit/WebCore/platform/gtk/
RenderThemeGtk.cpp 196 static bool supportsFocus(ControlPart appearance)
215 return supportsFocus(style->appearance());
  /external/webkit/WebCore/rendering/
RenderThemeChromiumWin.cpp 118 static bool supportsFocus(ControlPart appearance)
498 else if (supportsFocus(appearance) && isFocused(o))
512 else if (supportsFocus(o->style()->appearance()) && isFocused(o->parent()))
547 else if (supportsFocus(part) && isFocused(o)) // So does focused
RenderThemeWince.cpp 128 bool RenderThemeWince::supportsFocus(ControlPart appearance) const
145 return supportsFocus(style->appearance());
RenderThemeWin.cpp 353 bool RenderThemeWin::supportsFocus(ControlPart appearance) const
367 return supportsFocus(style->appearance());
415 else if (supportsFocus(appearance) && isFocused(o))
429 else if (supportsFocus(o->style()->appearance()) && isFocused(o->parent()))
445 else if (supportsFocus(o->style()->appearance()) && isFocused(o))
    [all...]
  /external/webkit/WebCore/platform/qt/
RenderThemeQt.cpp 754 bool RenderThemeQt::supportsFocus(ControlPart appearance) const
818 if (supportsFocus(result) && isFocused(o)) {
  /external/webkit/WebCore/dom/
Node.cpp 848 bool Node::supportsFocus() const
855 if (!inDocument() || !supportsFocus())
    [all...]

Completed in 238 milliseconds