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

/external/webkit/Source/WebCore/html/
H A DHTMLDivElement.h30 class HTMLDivElement : public HTMLElement { class in namespace:WebCore
32 static PassRefPtr<HTMLDivElement> create(Document*);
33 static PassRefPtr<HTMLDivElement> create(const QualifiedName&, Document*);
36 HTMLDivElement(const QualifiedName&, Document*);
H A DHTMLDivElement.cpp24 #include "HTMLDivElement.h"
35 HTMLDivElement::HTMLDivElement(const QualifiedName& tagName, Document* document) function in class:WebCore::HTMLDivElement
41 PassRefPtr<HTMLDivElement> HTMLDivElement::create(Document* document)
43 return adoptRef(new HTMLDivElement(divTag, document));
46 PassRefPtr<HTMLDivElement> HTMLDivElement::create(const QualifiedName& tagName, Document* document)
48 return adoptRef(new HTMLDivElement(tagName, document));
51 bool HTMLDivElement
[all...]

Completed in 69 milliseconds