| Index: Source/core/dom/Document.cpp
|
| diff --git a/Source/core/dom/Document.cpp b/Source/core/dom/Document.cpp
|
| index 78528d6ab6762d5014ae714718921f8a75c17f52..e0f43d0c2eb92fe0454ba39c8888cf855d26e44b 100644
|
| --- a/Source/core/dom/Document.cpp
|
| +++ b/Source/core/dom/Document.cpp
|
| @@ -4450,13 +4450,13 @@ PassRefPtr<HTMLCollection> Document::anchors()
|
| return ensureCachedCollection(DocAnchors);
|
| }
|
|
|
| -PassRefPtr<HTMLCollection> Document::allForBinding()
|
| +PassRefPtr<HTMLAllCollection> Document::allForBinding()
|
| {
|
| UseCounter::count(*this, UseCounter::DocumentAll);
|
| return all();
|
| }
|
|
|
| -PassRefPtr<HTMLCollection> Document::all()
|
| +PassRefPtr<HTMLAllCollection> Document::all()
|
| {
|
| return ensureRareData().ensureNodeLists().addCache<HTMLAllCollection>(*this, DocAll);
|
| }
|
|
|