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

  /external/webkit/Source/WebCore/html/
HTMLLIElement.h 30 class HTMLLIElement : public HTMLElement {
32 static PassRefPtr<HTMLLIElement> create(Document*);
33 static PassRefPtr<HTMLLIElement> create(const QualifiedName&, Document*);
36 HTMLLIElement(const QualifiedName&, Document*);
HTMLLIElement.cpp 24 #include "HTMLLIElement.h"
36 HTMLLIElement::HTMLLIElement(const QualifiedName& tagName, Document* document)
43 PassRefPtr<HTMLLIElement> HTMLLIElement::create(Document* document)
45 return adoptRef(new HTMLLIElement(liTag, document));
48 PassRefPtr<HTMLLIElement> HTMLLIElement::create(const QualifiedName& tagName, Document* document)
50 return adoptRef(new HTMLLIElement(tagName, document));
53 bool HTMLLIElement::mapToEntry(const QualifiedName& attrName, MappedAttributeEntry& result) cons
    [all...]

Completed in 196 milliseconds