diff options
Diffstat (limited to 'Source/WebCore/html/HTMLMapElement.cpp')
-rw-r--r-- | Source/WebCore/html/HTMLMapElement.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/WebCore/html/HTMLMapElement.cpp b/Source/WebCore/html/HTMLMapElement.cpp index 5073e89e1..8f6d6f64c 100644 --- a/Source/WebCore/html/HTMLMapElement.cpp +++ b/Source/WebCore/html/HTMLMapElement.cpp @@ -130,14 +130,14 @@ HTMLCollection* HTMLMapElement::areas() return ensureCachedHTMLCollection(MapAreas); } -Node::InsertionNotificationRequest HTMLMapElement::insertedInto(Node* insertionPoint) +Node::InsertionNotificationRequest HTMLMapElement::insertedInto(ContainerNode* insertionPoint) { if (insertionPoint->inDocument()) treeScope()->addImageMap(this); return HTMLElement::insertedInto(insertionPoint); } -void HTMLMapElement::removedFrom(Node* insertionPoint) +void HTMLMapElement::removedFrom(ContainerNode* insertionPoint) { if (insertionPoint->inDocument()) treeScope()->removeImageMap(this); |