| Index: Source/core/html/HTMLTableRowElement.cpp
|
| diff --git a/Source/core/html/HTMLTableRowElement.cpp b/Source/core/html/HTMLTableRowElement.cpp
|
| index 34059fb04ea1b469a2c3edb6a906aa51ba69d2eb..7923d8c681269a848d0e04df488a3087d732b40e 100644
|
| --- a/Source/core/html/HTMLTableRowElement.cpp
|
| +++ b/Source/core/html/HTMLTableRowElement.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/HTMLTableCellElement.h"
|
| #include "core/html/HTMLTableElement.h"
|
| @@ -155,7 +156,7 @@ void HTMLTableRowElement::deleteCell(int index, ExceptionState& exceptionState)
|
|
|
| PassRefPtrWillBeRawPtr<HTMLCollection> HTMLTableRowElement::cells()
|
| {
|
| - return ensureCachedHTMLCollection(TRCells);
|
| + return ensureCachedCollection<HTMLCollection>(TRCells);
|
| }
|
|
|
| }
|
|
|