88938ef4e3545932c1fe1de037b019ec9ec3e60d
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / html / HTMLMapElement.cpp
1 /*
2  * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3  *           (C) 1999 Antti Koivisto (koivisto@kde.org)
4  * Copyright (C) 2004, 2005, 2006, 2007, 2010 Apple Inc. All rights reserved.
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public License
17  * along with this library; see the file COPYING.LIB.  If not, write to
18  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19  * Boston, MA 02110-1301, USA.
20  */
21
22 #include "config.h"
23 #include "core/html/HTMLMapElement.h"
24
25 #include "HTMLNames.h"
26 #include "core/dom/Document.h"
27 #include "core/dom/ElementTraversal.h"
28 #include "core/html/HTMLAreaElement.h"
29 #include "core/html/HTMLCollection.h"
30 #include "core/html/HTMLImageElement.h"
31 #include "core/rendering/HitTestResult.h"
32
33 using namespace std;
34
35 namespace WebCore {
36
37 using namespace HTMLNames;
38
39 HTMLMapElement::HTMLMapElement(Document& document)
40     : HTMLElement(mapTag, document)
41 {
42     ScriptWrappable::init(this);
43 }
44
45 PassRefPtr<HTMLMapElement> HTMLMapElement::create(Document& document)
46 {
47     return adoptRef(new HTMLMapElement(document));
48 }
49
50 HTMLMapElement::~HTMLMapElement()
51 {
52 }
53
54 bool HTMLMapElement::mapMouseEvent(LayoutPoint location, const LayoutSize& size, HitTestResult& result)
55 {
56     HTMLAreaElement* defaultArea = 0;
57     for (HTMLAreaElement* area = Traversal<HTMLAreaElement>::firstWithin(*this); area; area = Traversal<HTMLAreaElement>::next(*area, this)) {
58         if (area->isDefault()) {
59             if (!defaultArea)
60                 defaultArea = area;
61         } else if (area->mapMouseEvent(location, size, result)) {
62             return true;
63         }
64     }
65
66     if (defaultArea) {
67         result.setInnerNode(defaultArea);
68         result.setURLElement(defaultArea);
69     }
70     return defaultArea;
71 }
72
73 HTMLImageElement* HTMLMapElement::imageElement()
74 {
75     RefPtr<HTMLCollection> images = document().images();
76     for (unsigned i = 0; Element* curr = images->item(i); i++) {
77         ASSERT(isHTMLImageElement(curr));
78
79         // The HTMLImageElement's useMap() value includes the '#' symbol at the beginning,
80         // which has to be stripped off.
81         HTMLImageElement& imageElement = toHTMLImageElement(*curr);
82         String useMapName = imageElement.getAttribute(usemapAttr).string().substring(1);
83         if (equalIgnoringCase(useMapName, m_name))
84             return &imageElement;
85     }
86
87     return 0;
88 }
89
90 void HTMLMapElement::parseAttribute(const QualifiedName& name, const AtomicString& value)
91 {
92     // FIXME: This logic seems wrong for XML documents.
93     // Either the id or name will be used depending on the order the attributes are parsed.
94
95     if (isIdAttributeName(name) || name == nameAttr) {
96         if (isIdAttributeName(name)) {
97             // Call base class so that hasID bit gets set.
98             HTMLElement::parseAttribute(name, value);
99             if (document().isHTMLDocument())
100                 return;
101         }
102         if (inDocument())
103             treeScope().removeImageMap(this);
104         String mapName = value;
105         if (mapName[0] == '#')
106             mapName = mapName.substring(1);
107         m_name = AtomicString(document().isHTMLDocument() ? mapName.lower() : mapName);
108         if (inDocument())
109             treeScope().addImageMap(this);
110
111         return;
112     }
113
114     HTMLElement::parseAttribute(name, value);
115 }
116
117 PassRefPtr<HTMLCollection> HTMLMapElement::areas()
118 {
119     return ensureCachedHTMLCollection(MapAreas);
120 }
121
122 Node::InsertionNotificationRequest HTMLMapElement::insertedInto(ContainerNode* insertionPoint)
123 {
124     if (insertionPoint->inDocument())
125         treeScope().addImageMap(this);
126     return HTMLElement::insertedInto(insertionPoint);
127 }
128
129 void HTMLMapElement::removedFrom(ContainerNode* insertionPoint)
130 {
131     if (insertionPoint->inDocument())
132         treeScope().removeImageMap(this);
133     HTMLElement::removedFrom(insertionPoint);
134 }
135
136 }