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

  /external/webkit/Source/WebCore/html/
HTMLTableRowElement.h 33 class HTMLTableRowElement : public HTMLTablePartElement {
35 static PassRefPtr<HTMLTableRowElement> create(Document*);
36 static PassRefPtr<HTMLTableRowElement> create(const QualifiedName&, Document*);
51 HTMLTableRowElement(const QualifiedName&, Document*);
HTMLTableRowElement.cpp 26 #include "HTMLTableRowElement.h"
41 HTMLTableRowElement::HTMLTableRowElement(const QualifiedName& tagName, Document* document)
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::rowIndex() cons
    [all...]

Completed in 38 milliseconds