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 46 bool HTMLHtmlElement::isURLAttribute(const Attribute& attribute) const
48 return attribute.name() == manifestAttr || HTMLElement::isURLAttribute(attribute);
HTMLModElement.cpp 39 bool HTMLModElement::isURLAttribute(const Attribute& attribute) const
41 return attribute.name() == citeAttr || HTMLElement::isURLAttribute(attribute);
HTMLQuoteElement.cpp 41 bool HTMLQuoteElement::isURLAttribute(const Attribute& attribute) const
43 return attribute.name() == citeAttr || HTMLElement::isURLAttribute(attribute);
HTMLParamElement.cpp 58 bool HTMLParamElement::isURLAttribute(const Attribute& attribute) const
62 return HTMLElement::isURLAttribute(attribute);
HTMLBaseElement.cpp 66 bool HTMLBaseElement::isURLAttribute(const Attribute& attribute) const
68 return attribute.name().localName() == hrefAttr || HTMLElement::isURLAttribute(attribute);
HTMLEmbedElement.cpp 175 bool HTMLEmbedElement::isURLAttribute(const Attribute& attribute) const
177 return attribute.name() == srcAttr || HTMLPlugInElement::isURLAttribute(attribute);
HTMLAppletElement.cpp 74 bool HTMLAppletElement::isURLAttribute(const Attribute& attribute) const
77 || HTMLPlugInElement::isURLAttribute(attribute);
HTMLButtonElement.cpp 191 bool HTMLButtonElement::isURLAttribute(const Attribute& attribute) const
193 return attribute.name() == formactionAttr || HTMLFormControlElement::isURLAttribute(attribute);
HTMLFrameElementBase.cpp 194 bool HTMLFrameElementBase::isURLAttribute(const Attribute& attribute) const
197 || HTMLFrameOwnerElement::isURLAttribute(attribute);
HTMLScriptElement.cpp 52 bool HTMLScriptElement::isURLAttribute(const Attribute& attribute) const
54 return attribute.name() == srcAttr || HTMLElement::isURLAttribute(attribute);
HTMLSourceElement.cpp 151 bool HTMLSourceElement::isURLAttribute(const Attribute& attribute) const
153 return attribute.name() == srcAttr || HTMLElement::isURLAttribute(attribute);
HTMLTableCellElement.cpp 127 bool HTMLTableCellElement::isURLAttribute(const Attribute& attribute) const
129 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 180 bool HTMLBodyElement::isURLAttribute(const Attribute& attribute) const
182 return attribute.name() == backgroundAttr || HTMLElement::isURLAttribute(attribute);
HTMLVideoElement.cpp 161 bool HTMLVideoElement::isURLAttribute(const Attribute& attribute) const
163 return attribute.name() == posterAttr || HTMLMediaElement::isURLAttribute(attribute);
HTMLAnchorElement.cpp 227 bool HTMLAnchorElement::isURLAttribute(const Attribute& attribute) const
229 return attribute.name().localName() == hrefAttr || HTMLElement::isURLAttribute(attribute);
HTMLObjectElement.cpp 339 bool HTMLObjectElement::isURLAttribute(const Attribute& attribute) const
343 || HTMLPlugInElement::isURLAttribute(attribute);
HTMLTableElement.cpp 526 bool HTMLTableElement::isURLAttribute(const Attribute& attribute) const
528 return attribute.name() == backgroundAttr || HTMLElement::isURLAttribute(attribute);
HTMLImageElement.cpp 461 bool HTMLImageElement::isURLAttribute(const Attribute& attribute) const
467 || HTMLElement::isURLAttribute(attribute);
HTMLLinkElement.cpp 392 bool HTMLLinkElement::isURLAttribute(const Attribute& attribute) const
394 return attribute.name().localName() == hrefAttr || HTMLElement::isURLAttribute(attribute);
HTMLFormElement.cpp 572 bool HTMLFormElement::isURLAttribute(const Attribute& attribute) const
574 return attribute.name() == actionAttr || HTMLElement::isURLAttribute(attribute);
HTMLInputElement.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAElement.cpp 175 bool SVGAElement::isURLAttribute(const Attribute& attribute) const
177 return attribute.name().localName() == hrefAttr || SVGGraphicsElement::isURLAttribute(attribute);
SVGScriptElement.cpp 133 bool SVGScriptElement::isURLAttribute(const Attribute& attribute) const
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Element.h 344 virtual bool isURLAttribute(const Attribute&) const { return false; }
    [all...]

Completed in 541 milliseconds

1 2