Index: Source/core/html/HTMLAllCollection.cpp |
diff --git a/Source/core/html/HTMLAllCollection.cpp b/Source/core/html/HTMLAllCollection.cpp |
index 9af8d2baa13ae08d3af21fe6a94d51334d2ead0e..1d2a1036a4eb2d0b8a797bcb1ef8c8d5cbb4c3db 100644 |
--- a/Source/core/html/HTMLAllCollection.cpp |
+++ b/Source/core/html/HTMLAllCollection.cpp |
@@ -64,9 +64,9 @@ Node* HTMLAllCollection::namedItemWithIndex(const AtomicString& name, unsigned i |
return 0; |
} |
-void HTMLAllCollection::anonymousNamedGetter(const AtomicString& name, bool& returnValue0Enabled, RefPtr<NodeList>& returnValue0, bool& returnValue1Enabled, RefPtr<Node>& returnValue1) |
+void HTMLAllCollection::anonymousNamedGetter(const AtomicString& name, bool& returnValue0Enabled, RefPtr<NodeList>& returnValue0, bool& returnValue1Enabled, RefPtr<Element>& returnValue1) |
{ |
- Vector<RefPtr<Node> > namedItems; |
+ Vector<RefPtr<Element> > namedItems; |
this->namedItems(name, namedItems); |
if (!namedItems.size()) |