| Index: Source/core/html/HTMLTableElement.cpp
|
| diff --git a/Source/core/html/HTMLTableElement.cpp b/Source/core/html/HTMLTableElement.cpp
|
| index 5135db8177a3814c1eb37c38afe1708a9583129a..cebf9c3d6eadc77e826c84ee516a13b17207edd0 100644
|
| --- a/Source/core/html/HTMLTableElement.cpp
|
| +++ b/Source/core/html/HTMLTableElement.cpp
|
| @@ -556,9 +556,9 @@ const QualifiedName& HTMLTableElement::subResourceAttributeName() const
|
| return backgroundAttr;
|
| }
|
|
|
| -PassRefPtrWillBeRawPtr<HTMLCollection> HTMLTableElement::rows()
|
| +PassRefPtrWillBeRawPtr<HTMLTableRowsCollection> HTMLTableElement::rows()
|
| {
|
| - return ensureCachedHTMLCollection(TableRows);
|
| + return toHTMLTableRowsCollection(ensureCachedHTMLCollection(TableRows).get());
|
| }
|
|
|
| PassRefPtrWillBeRawPtr<HTMLCollection> HTMLTableElement::tBodies()
|
|
|