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

  /external/webkit/Source/WebCore/html/
HTMLHtmlElement.h 31 class HTMLHtmlElement : public HTMLElement {
33 static PassRefPtr<HTMLHtmlElement> create(Document*);
34 static PassRefPtr<HTMLHtmlElement> create(const QualifiedName&, Document*);
41 HTMLHtmlElement(const QualifiedName&, Document*);
HTMLHtmlElement.cpp 25 #include "HTMLHtmlElement.h"
38 HTMLHtmlElement::HTMLHtmlElement(const QualifiedName& tagName, Document* document)
44 PassRefPtr<HTMLHtmlElement> HTMLHtmlElement::create(Document* document)
46 return adoptRef(new HTMLHtmlElement(htmlTag, document));
49 PassRefPtr<HTMLHtmlElement> HTMLHtmlElement::create(const QualifiedName& tagName, Document* document)
51 return adoptRef(new HTMLHtmlElement(tagName, document));
54 bool HTMLHtmlElement::isURLAttribute(Attribute* attribute) cons
    [all...]

Completed in 513 milliseconds