| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * Copyright (C) 2004, 2005, 2006, 2007, 2010 Apple Inc. All rights reserved. | 4 * Copyright (C) 2004, 2005, 2006, 2007, 2010 Apple Inc. All rights reserved. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| 11 * This library is distributed in the hope that it will be useful, | 11 * This library is distributed in the hope that it will be useful, |
| 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 14 * Library General Public License for more details. | 14 * Library General Public License for more details. |
| 15 * | 15 * |
| 16 * You should have received a copy of the GNU Library General Public License | 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 | 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, | 18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 19 * Boston, MA 02110-1301, USA. | 19 * Boston, MA 02110-1301, USA. |
| 20 */ | 20 */ |
| 21 | 21 |
| 22 #include "config.h" | 22 #include "config.h" |
| 23 #include "core/html/HTMLMapElement.h" | 23 #include "core/html/HTMLMapElement.h" |
| 24 | 24 |
| 25 #include "core/HTMLNames.h" | 25 #include "core/HTMLNames.h" |
| 26 #include "core/dom/Document.h" | 26 #include "core/dom/Document.h" |
| 27 #include "core/dom/ElementTraversal.h" | 27 #include "core/dom/ElementTraversal.h" |
| 28 #include "core/frame/UseCounter.h" |
| 28 #include "core/html/HTMLAreaElement.h" | 29 #include "core/html/HTMLAreaElement.h" |
| 29 #include "core/html/HTMLCollection.h" | 30 #include "core/html/HTMLCollection.h" |
| 30 #include "core/html/HTMLImageElement.h" | 31 #include "core/html/HTMLImageElement.h" |
| 31 #include "core/rendering/HitTestResult.h" | 32 #include "core/rendering/HitTestResult.h" |
| 32 | 33 |
| 33 namespace WebCore { | 34 namespace WebCore { |
| 34 | 35 |
| 35 using namespace HTMLNames; | 36 using namespace HTMLNames; |
| 36 | 37 |
| 37 inline HTMLMapElement::HTMLMapElement(Document& document) | 38 inline HTMLMapElement::HTMLMapElement(Document& document) |
| 38 : HTMLElement(mapTag, document) | 39 : HTMLElement(mapTag, document) |
| 39 { | 40 { |
| 40 ScriptWrappable::init(this); | 41 ScriptWrappable::init(this); |
| 42 UseCounter::count(document, UseCounter::MapElement); |
| 41 } | 43 } |
| 42 | 44 |
| 43 DEFINE_NODE_FACTORY(HTMLMapElement) | 45 DEFINE_NODE_FACTORY(HTMLMapElement) |
| 44 | 46 |
| 45 HTMLMapElement::~HTMLMapElement() | 47 HTMLMapElement::~HTMLMapElement() |
| 46 { | 48 { |
| 47 } | 49 } |
| 48 | 50 |
| 49 bool HTMLMapElement::mapMouseEvent(LayoutPoint location, const LayoutSize& size,
HitTestResult& result) | 51 bool HTMLMapElement::mapMouseEvent(LayoutPoint location, const LayoutSize& size,
HitTestResult& result) |
| 50 { | 52 { |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 } | 124 } |
| 123 | 125 |
| 124 void HTMLMapElement::removedFrom(ContainerNode* insertionPoint) | 126 void HTMLMapElement::removedFrom(ContainerNode* insertionPoint) |
| 125 { | 127 { |
| 126 if (insertionPoint->inDocument()) | 128 if (insertionPoint->inDocument()) |
| 127 treeScope().removeImageMap(this); | 129 treeScope().removeImageMap(this); |
| 128 HTMLElement::removedFrom(insertionPoint); | 130 HTMLElement::removedFrom(insertionPoint); |
| 129 } | 131 } |
| 130 | 132 |
| 131 } | 133 } |
| OLD | NEW |