| Index: Source/core/html/HTMLTableSectionElement.cpp
|
| diff --git a/Source/core/html/HTMLTableSectionElement.cpp b/Source/core/html/HTMLTableSectionElement.cpp
|
| index 2563f3017340dc0b164aa123a8dbefe85cd6ca6f..401ca53d2d71f96940c08e690b289bbbff5f2397 100644
|
| --- a/Source/core/html/HTMLTableSectionElement.cpp
|
| +++ b/Source/core/html/HTMLTableSectionElement.cpp
|
| @@ -29,6 +29,7 @@
|
| #include "core/HTMLNames.h"
|
| #include "core/dom/ElementTraversal.h"
|
| #include "core/dom/ExceptionCode.h"
|
| +#include "core/dom/NodeListsNodeData.h"
|
| #include "core/html/HTMLCollection.h"
|
| #include "core/html/HTMLTableElement.h"
|
| #include "core/html/HTMLTableRowElement.h"
|
| @@ -101,7 +102,7 @@ int HTMLTableSectionElement::numRows() const
|
|
|
| PassRefPtrWillBeRawPtr<HTMLCollection> HTMLTableSectionElement::rows()
|
| {
|
| - return ensureCachedHTMLCollection(TSectionRows);
|
| + return ensureCachedCollection<HTMLCollection>(TSectionRows);
|
| }
|
|
|
| }
|
|
|