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

  /external/webkit/Source/WebCore/html/
HTMLTableElement.h 37 class HTMLTableElement : public HTMLElement {
39 static PassRefPtr<HTMLTableElement> create(Document*);
40 static PassRefPtr<HTMLTableElement> create(const QualifiedName&, Document*);
72 HTMLTableElement(const QualifiedName&, Document*);
HTMLTableElement.cpp 26 #include "HTMLTableElement.h"
46 HTMLTableElement::HTMLTableElement(const QualifiedName& tagName, Document* document)
57 PassRefPtr<HTMLTableElement> HTMLTableElement::create(Document* document)
59 return adoptRef(new HTMLTableElement(tableTag, document));
62 PassRefPtr<HTMLTableElement> HTMLTableElement::create(const QualifiedName& tagName, Document* document)
64 return adoptRef(new HTMLTableElement(tagName, document));
67 HTMLTableCaptionElement* HTMLTableElement::caption() cons
    [all...]

Completed in 387 milliseconds