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

/external/webkit/Source/WebCore/html/
H A DHTMLTableElement.h37 class HTMLTableElement : public HTMLElement { class in namespace:WebCore
39 static PassRefPtr<HTMLTableElement> create(Document*);
40 static PassRefPtr<HTMLTableElement> create(const QualifiedName&, Document*);
72 HTMLTableElement(const QualifiedName&, Document*);
H A DHTMLTableElement.cpp26 #include "HTMLTableElement.h"
46 HTMLTableElement::HTMLTableElement(const QualifiedName& tagName, Document* document) function in class:WebCore::HTMLTableElement
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
[all...]

Completed in 117 milliseconds