Searched defs:HTMLUListElement (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/html/
H A DHTMLUListElement.h30 class HTMLUListElement : public HTMLElement { class in namespace:WebCore
32 static PassRefPtr<HTMLUListElement> create(Document*);
33 static PassRefPtr<HTMLUListElement> create(const QualifiedName&, Document*);
36 HTMLUListElement(const QualifiedName&, Document*);
H A DHTMLUListElement.cpp24 #include "HTMLUListElement.h"
34 HTMLUListElement::HTMLUListElement(const QualifiedName& tagName, Document* document) function in class:WebCore::HTMLUListElement
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
[all...]

Completed in 141 milliseconds