Index: Source/web/WebPageSerializer.cpp |
diff --git a/Source/web/WebPageSerializer.cpp b/Source/web/WebPageSerializer.cpp |
index 1ae99cfd559e679070140281a8ee32023108e0bc..07a14c5cf53881e415abe71a8957e15589766975 100644 |
--- a/Source/web/WebPageSerializer.cpp |
+++ b/Source/web/WebPageSerializer.cpp |
@@ -139,7 +139,7 @@ void retrieveResourcesForFrame(LocalFrame* frame, |
frameURLs->append(frameURL); |
// Now get the resources associated with each node of the document. |
- RefPtrWillBeRawPtr<HTMLCollection> allElements = frame->document()->all(); |
+ RefPtrWillBeRawPtr<HTMLAllCollection> allElements = frame->document()->all(); |
for (unsigned i = 0; i < allElements->length(); ++i) { |
Element* element = allElements->item(i); |
retrieveResourcesForElement(element, |