Index: Source/core/html/HTMLMapElement.cpp |
diff --git a/Source/core/html/HTMLMapElement.cpp b/Source/core/html/HTMLMapElement.cpp |
index 3a34c9c3c5716b476a824c012321cd3f834698d5..00f7032c8087ddc0773a7a9d044e7bbb7bae11fa 100644 |
--- a/Source/core/html/HTMLMapElement.cpp |
+++ b/Source/core/html/HTMLMapElement.cpp |
@@ -76,7 +76,7 @@ bool HTMLMapElement::mapMouseEvent(LayoutPoint location, const LayoutSize& size, |
HTMLImageElement* HTMLMapElement::imageElement() |
{ |
RefPtr<HTMLCollection> images = document().images(); |
- for (unsigned i = 0; Node* curr = images->item(i); i++) { |
+ for (unsigned i = 0; Element* curr = images->item(i); i++) { |
if (!curr->hasTagName(imgTag)) |
continue; |