Index: Source/core/accessibility/AXRenderObject.cpp |
diff --git a/Source/core/accessibility/AXRenderObject.cpp b/Source/core/accessibility/AXRenderObject.cpp |
index 3b3101c110e919c13885a38d827d28f071f6d098..595135959b6500213451ccdc35ab45830ecf3ea5 100644 |
--- a/Source/core/accessibility/AXRenderObject.cpp |
+++ b/Source/core/accessibility/AXRenderObject.cpp |
@@ -2196,7 +2196,7 @@ void AXRenderObject::addImageMapChildren() |
if (!map) |
return; |
- for (Element* current = ElementTraversal::firstWithin(map); current; current = ElementTraversal::next(*current, map)) { |
+ for (Element* current = ElementTraversal::firstWithin(*map); current; current = ElementTraversal::next(*current, map)) { |
// add an <area> element for this child if it has a link |
if (isHTMLAreaElement(current) && current->isLink()) { |
AXImageMapLink* areaObject = toAXImageMapLink(axObjectCache()->getOrCreate(ImageMapLinkRole)); |