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

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

Completed in 38 milliseconds