| Index: third_party/WebKit/Source/core/html/HTMLIFrameElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLIFrameElement.cpp b/third_party/WebKit/Source/core/html/HTMLIFrameElement.cpp
|
| index 4ccd90eec5511ecdbf14f0112eedf04ad8384b83..2b6b19cc97919a3931348991812a3a57748e56dd 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLIFrameElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLIFrameElement.cpp
|
| @@ -134,9 +134,9 @@ Node::InsertionNotificationRequest HTMLIFrameElement::insertedInto(ContainerNode
|
| return result;
|
| }
|
|
|
| -void HTMLIFrameElement::removedFrom(ContainerNode* insertionPoint)
|
| +void HTMLIFrameElement::removedFrom(ContainerNode* insertionPoint, Node* next)
|
| {
|
| - HTMLFrameElementBase::removedFrom(insertionPoint);
|
| + HTMLFrameElementBase::removedFrom(insertionPoint, next);
|
| if (insertionPoint->inDocument() && document().isHTMLDocument() && !insertionPoint->isInShadowTree())
|
| toHTMLDocument(document()).removeExtraNamedItem(m_name);
|
| }
|
|
|