HomeSort by relevance Sort by last modified time
    Searched defs:isURLAttribute (Results 1 - 25 of 26) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLHtmlElement.cpp 47 bool HTMLHtmlElement::isURLAttribute(const Attribute& attribute) const
49 return attribute.name() == manifestAttr || HTMLElement::isURLAttribute(attribute);
HTMLModElement.cpp 40 bool HTMLModElement::isURLAttribute(const Attribute& attribute) const
42 return attribute.name() == citeAttr || HTMLElement::isURLAttribute(attribute);
HTMLQuoteElement.cpp 43 bool HTMLQuoteElement::isURLAttribute(const Attribute& attribute) const
45 return attribute.name() == citeAttr || HTMLElement::isURLAttribute(attribute);
HTMLParamElement.cpp 59 bool HTMLParamElement::isURLAttribute(const Attribute& attribute) const
63 return HTMLElement::isURLAttribute(attribute);
HTMLBaseElement.cpp 67 bool HTMLBaseElement::isURLAttribute(const Attribute& attribute) const
69 return attribute.name().localName() == hrefAttr || HTMLElement::isURLAttribute(attribute);
HTMLSourceElement.cpp 117 bool HTMLSourceElement::isURLAttribute(const Attribute& attribute) const
119 return attribute.name() == srcAttr || HTMLElement::isURLAttribute(attribute);
HTMLButtonElement.cpp 191 bool HTMLButtonElement::isURLAttribute(const Attribute& attribute) const
193 return attribute.name() == formactionAttr || HTMLFormControlElement::isURLAttribute(attribute);
HTMLEmbedElement.cpp 178 bool HTMLEmbedElement::isURLAttribute(const Attribute& attribute) const
180 return attribute.name() == srcAttr || HTMLPlugInElement::isURLAttribute(attribute);
HTMLAppletElement.cpp 74 bool HTMLAppletElement::isURLAttribute(const Attribute& attribute) const
77 || HTMLPlugInElement::isURLAttribute(attribute);
HTMLFrameElementBase.cpp 194 bool HTMLFrameElementBase::isURLAttribute(const Attribute& attribute) const
197 || HTMLFrameOwnerElement::isURLAttribute(attribute);
HTMLScriptElement.cpp 51 bool HTMLScriptElement::isURLAttribute(const Attribute& attribute) const
53 return attribute.name() == srcAttr || HTMLElement::isURLAttribute(attribute);
HTMLTableCellElement.cpp 123 bool HTMLTableCellElement::isURLAttribute(const Attribute& attribute) const
125 return attribute.name() == backgroundAttr || HTMLTablePartElement::isURLAttribute(attribute);
HTMLTrackElement.cpp 139 bool HTMLTrackElement::isURLAttribute(const Attribute& attribute) const
141 return attribute.name() == srcAttr || HTMLElement::isURLAttribute(attribute);
HTMLBodyElement.cpp 178 bool HTMLBodyElement::isURLAttribute(const Attribute& attribute) const
180 return attribute.name() == backgroundAttr || HTMLElement::isURLAttribute(attribute);
HTMLVideoElement.cpp 157 bool HTMLVideoElement::isURLAttribute(const Attribute& attribute) const
159 return attribute.name() == posterAttr || HTMLMediaElement::isURLAttribute(attribute);
HTMLObjectElement.cpp 371 bool HTMLObjectElement::isURLAttribute(const Attribute& attribute) const
375 || HTMLPlugInElement::isURLAttribute(attribute);
HTMLTableElement.cpp 544 bool HTMLTableElement::isURLAttribute(const Attribute& attribute) const
546 return attribute.name() == backgroundAttr || HTMLElement::isURLAttribute(attribute);
HTMLAnchorElement.cpp 253 bool HTMLAnchorElement::isURLAttribute(const Attribute& attribute) const
255 return attribute.name().localName() == hrefAttr || HTMLElement::isURLAttribute(attribute);
HTMLImageElement.cpp 404 bool HTMLImageElement::isURLAttribute(const Attribute& attribute) const
410 || HTMLElement::isURLAttribute(attribute);
HTMLLinkElement.cpp 382 bool HTMLLinkElement::isURLAttribute(const Attribute& attribute) const
384 return attribute.name().localName() == hrefAttr || HTMLElement::isURLAttribute(attribute);
HTMLFormElement.cpp 544 bool HTMLFormElement::isURLAttribute(const Attribute& attribute) const
546 return attribute.name() == actionAttr || HTMLElement::isURLAttribute(attribute);
HTMLInputElement.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAElement.cpp 188 bool SVGAElement::isURLAttribute(const Attribute& attribute) const
190 return attribute.name().localName() == hrefAttr || SVGGraphicsElement::isURLAttribute(attribute);
SVGScriptElement.cpp 122 bool SVGScriptElement::isURLAttribute(const Attribute& attribute) const
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Element.h 364 virtual bool isURLAttribute(const Attribute&) const { return false; }
    [all...]

Completed in 690 milliseconds

1 2