| Index: Source/core/html/HTMLDataListElement.cpp
|
| diff --git a/Source/core/html/HTMLDataListElement.cpp b/Source/core/html/HTMLDataListElement.cpp
|
| index 4ef15b3e7a6a7dee00f18a881175071e6f385ce4..2ae46d3214e3ad11516a180b905efa081f329809 100644
|
| --- a/Source/core/html/HTMLDataListElement.cpp
|
| +++ b/Source/core/html/HTMLDataListElement.cpp
|
| @@ -34,6 +34,7 @@
|
|
|
| #include "core/HTMLNames.h"
|
| #include "core/dom/IdTargetObserverRegistry.h"
|
| +#include "core/dom/NodeListsNodeData.h"
|
| #include "core/frame/UseCounter.h"
|
|
|
| namespace blink {
|
| @@ -52,7 +53,7 @@ PassRefPtrWillBeRawPtr<HTMLDataListElement> HTMLDataListElement::create(Document
|
|
|
| PassRefPtrWillBeRawPtr<HTMLCollection> HTMLDataListElement::options()
|
| {
|
| - return ensureCachedHTMLCollection(DataListOptions);
|
| + return ensureCachedCollection<HTMLCollection>(DataListOptions);
|
| }
|
|
|
| void HTMLDataListElement::childrenChanged(const ChildrenChange& change)
|
|
|