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

  /external/chromium_org/third_party/WebKit/Source/web/
WebElement.cpp 65 bool WebElement::hasTagName(const WebString& tagName) const
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLStackItem.h 78 bool hasTagName(const QualifiedName& name) const { return m_tokenLocalName == name.localName() && m_namespaceURI == name.namespaceURI(); }
85 return hasTagName(HTMLNames::tableTag)
86 || hasTagName(HTMLNames::tbodyTag)
87 || hasTagName(HTMLNames::tfootTag)
88 || hasTagName(HTMLNames::theadTag)
89 || hasTagName(HTMLNames::trTag);
102 return hasTagName(HTMLNames::h1Tag)
103 || hasTagName(HTMLNames::h2Tag)
104 || hasTagName(HTMLNames::h3Tag)
105 || hasTagName(HTMLNames::h4Tag
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Element.h 240 bool hasTagName(const QualifiedName& tagName) const { return m_tagName.matches(tagName); }
690 inline bool Node::hasTagName(const QualifiedName& name) const
692 return isElementNode() && toElement(this)->hasTagName(name);
    [all...]

Completed in 96 milliseconds