Rubber stamped by Geoff.

        This is a followup to my HitTestResult checkin. Most of the 
        HitTestResult local variables in the code were named i or info for 
        when the class was named NodeInfo. This patch renames all of these 
        local variables to result.


git-svn-id: http://svn.webkit.org/repository/webkit/trunk@17426 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebCore/html/HTMLAreaElement.cpp b/WebCore/html/HTMLAreaElement.cpp
index 745c6de..911ebe0 100644
--- a/WebCore/html/HTMLAreaElement.cpp
+++ b/WebCore/html/HTMLAreaElement.cpp
@@ -69,7 +69,7 @@
         HTMLAnchorElement::parseMappedAttribute(attr);
 }
 
-bool HTMLAreaElement::mapMouseEvent(int x, int y, const IntSize& size, HitTestResult& info)
+bool HTMLAreaElement::mapMouseEvent(int x, int y, const IntSize& size, HitTestResult& result)
 {
     if (m_lastSize != size) {
         region = getRegion(size);
@@ -79,8 +79,8 @@
     if (!region.contains(IntPoint(x, y)))
         return false;
     
-    info.setInnerNode(this);
-    info.setURLElement(this);
+    result.setInnerNode(this);
+    result.setURLElement(this);
     return true;
 }