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

  /external/webkit/Source/WebCore/html/
HTMLAnchorElement.h 54 class HTMLAnchorElement : public HTMLElement {
56 static PassRefPtr<HTMLAnchorElement> create(Document*);
57 static PassRefPtr<HTMLAnchorElement> create(const QualifiedName&, Document*);
99 HTMLAnchorElement(const QualifiedName&, Document*);
HTMLAnchorElement.cpp 25 #include "HTMLAnchorElement.h"
47 HTMLAnchorElement::HTMLAnchorElement(const QualifiedName& tagName, Document* document)
54 PassRefPtr<HTMLAnchorElement> HTMLAnchorElement::create(Document* document)
56 return adoptRef(new HTMLAnchorElement(aTag, document));
59 PassRefPtr<HTMLAnchorElement> HTMLAnchorElement::create(const QualifiedName& tagName, Document* document)
61 return adoptRef(new HTMLAnchorElement(tagName, document));
73 bool HTMLAnchorElement::supportsFocus() cons
    [all...]

Completed in 137 milliseconds