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

/external/webkit/Source/WebCore/html/
H A DHTMLTableRowElement.h33 class HTMLTableRowElement : public HTMLTablePartElement { class in namespace:WebCore
35 static PassRefPtr<HTMLTableRowElement> create(Document*);
36 static PassRefPtr<HTMLTableRowElement> create(const QualifiedName&, Document*);
51 HTMLTableRowElement(const QualifiedName&, Document*);
H A DHTMLTableRowElement.cpp26 #include "HTMLTableRowElement.h"
41 HTMLTableRowElement::HTMLTableRowElement(const QualifiedName& tagName, Document* document) function in class:WebCore::HTMLTableRowElement
47 PassRefPtr<HTMLTableRowElement> HTMLTableRowElement::create(Document* document)
49 return adoptRef(new HTMLTableRowElement(trTag, document));
52 PassRefPtr<HTMLTableRowElement> HTMLTableRowElement::create(const QualifiedName& tagName, Document* document)
54 return adoptRef(new HTMLTableRowElement(tagName, document));
57 int HTMLTableRowElement
[all...]

Completed in 46 milliseconds