diff options
Diffstat (limited to 'WebCore/html/HTMLTableSectionElement.cpp')
-rw-r--r-- | WebCore/html/HTMLTableSectionElement.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/WebCore/html/HTMLTableSectionElement.cpp b/WebCore/html/HTMLTableSectionElement.cpp index 15999e0..8190d93 100644 --- a/WebCore/html/HTMLTableSectionElement.cpp +++ b/WebCore/html/HTMLTableSectionElement.cpp @@ -169,7 +169,7 @@ void HTMLTableSectionElement::setVAlign(const String &value) PassRefPtr<HTMLCollection> HTMLTableSectionElement::rows() { - return new HTMLCollection(this, HTMLCollection::TSectionRows); + return HTMLCollection::create(this, HTMLCollection::TSectionRows); } } |