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

/external/webkit/Source/WebCore/html/
H A DHTMLBodyElement.h33 class HTMLBodyElement : public HTMLElement { class in namespace:WebCore
35 static PassRefPtr<HTMLBodyElement> create(Document*);
36 static PassRefPtr<HTMLBodyElement> create(const QualifiedName&, Document*);
37 virtual ~HTMLBodyElement();
71 HTMLBodyElement(const QualifiedName&, Document*);
H A DHTMLBodyElement.cpp25 #include "HTMLBodyElement.h"
43 HTMLBodyElement::HTMLBodyElement(const QualifiedName& tagName, Document* document) function in class:WebCore::HTMLBodyElement
49 PassRefPtr<HTMLBodyElement> HTMLBodyElement::create(Document* document)
51 return adoptRef(new HTMLBodyElement(bodyTag, document));
54 PassRefPtr<HTMLBodyElement> HTMLBodyElement::create(const QualifiedName& tagName, Document* document)
56 return adoptRef(new HTMLBodyElement(tagName, document));
59 HTMLBodyElement
[all...]

Completed in 76 milliseconds