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

  /external/webkit/Source/WebCore/html/
HTMLBodyElement.h 33 class HTMLBodyElement : public HTMLElement {
35 static PassRefPtr<HTMLBodyElement> create(Document*);
36 static PassRefPtr<HTMLBodyElement> create(const QualifiedName&, Document*);
37 virtual ~HTMLBodyElement();
71 HTMLBodyElement(const QualifiedName&, Document*);
HTMLBodyElement.cpp 25 #include "HTMLBodyElement.h"
43 HTMLBodyElement::HTMLBodyElement(const QualifiedName& tagName, Document* document)
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::~HTMLBodyElement(
    [all...]

Completed in 35 milliseconds