diff options
Diffstat (limited to 'WebCore/html/HTMLTableRowsCollection.h')
-rw-r--r-- | WebCore/html/HTMLTableRowsCollection.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/WebCore/html/HTMLTableRowsCollection.h b/WebCore/html/HTMLTableRowsCollection.h index 9acce69..f997e3c 100644 --- a/WebCore/html/HTMLTableRowsCollection.h +++ b/WebCore/html/HTMLTableRowsCollection.h @@ -38,12 +38,14 @@ class HTMLTableRowElement; class HTMLTableRowsCollection : public HTMLCollection { public: - HTMLTableRowsCollection(PassRefPtr<HTMLTableElement>); + static PassRefPtr<HTMLTableRowsCollection> create(PassRefPtr<HTMLTableElement>); static HTMLTableRowElement* rowAfter(HTMLTableElement*, HTMLTableRowElement*); static HTMLTableRowElement* lastRow(HTMLTableElement*); private: + HTMLTableRowsCollection(PassRefPtr<HTMLTableElement>); + virtual Element* itemAfter(Element*) const; }; |