| Index: Source/core/html/HTMLTableElement.cpp
|
| diff --git a/Source/core/html/HTMLTableElement.cpp b/Source/core/html/HTMLTableElement.cpp
|
| index 95be5d366aa6919bd427f62b776c0234961dd5f6..b8de5960eda56723b68f3461a9f0316da6fd20cd 100644
|
| --- a/Source/core/html/HTMLTableElement.cpp
|
| +++ b/Source/core/html/HTMLTableElement.cpp
|
| @@ -36,6 +36,7 @@
|
| #include "core/dom/Attribute.h"
|
| #include "core/dom/ElementTraversal.h"
|
| #include "core/dom/ExceptionCode.h"
|
| +#include "core/dom/NodeListsNodeData.h"
|
| #include "core/frame/UseCounter.h"
|
| #include "core/html/HTMLTableCaptionElement.h"
|
| #include "core/html/HTMLTableCellElement.h"
|
| @@ -558,12 +559,12 @@ const QualifiedName& HTMLTableElement::subResourceAttributeName() const
|
|
|
| PassRefPtrWillBeRawPtr<HTMLTableRowsCollection> HTMLTableElement::rows()
|
| {
|
| - return toHTMLTableRowsCollection(ensureCachedHTMLCollection(TableRows).get());
|
| + return ensureCachedCollection<HTMLTableRowsCollection>(TableRows);
|
| }
|
|
|
| PassRefPtrWillBeRawPtr<HTMLCollection> HTMLTableElement::tBodies()
|
| {
|
| - return ensureCachedHTMLCollection(TableTBodies);
|
| + return ensureCachedCollection<HTMLCollection>(TableTBodies);
|
| }
|
|
|
| const AtomicString& HTMLTableElement::rules() const
|
|
|