| Index: third_party/WebKit/Source/core/html/HTMLTitleElement.cpp
 | 
| diff --git a/third_party/WebKit/Source/core/html/HTMLTitleElement.cpp b/third_party/WebKit/Source/core/html/HTMLTitleElement.cpp
 | 
| index 30e6735b7b4e2142721a3487127121d0848b73fc..94e512646b9024f7d997496ff565fca033efd31e 100644
 | 
| --- a/third_party/WebKit/Source/core/html/HTMLTitleElement.cpp
 | 
| +++ b/third_party/WebKit/Source/core/html/HTMLTitleElement.cpp
 | 
| @@ -52,9 +52,9 @@ Node::InsertionNotificationRequest HTMLTitleElement::insertedInto(ContainerNode*
 | 
|      return InsertionDone;
 | 
|  }
 | 
|  
 | 
| -void HTMLTitleElement::removedFrom(ContainerNode* insertionPoint)
 | 
| +void HTMLTitleElement::removedFrom(ContainerNode* insertionPoint, Node* next)
 | 
|  {
 | 
| -    HTMLElement::removedFrom(insertionPoint);
 | 
| +    HTMLElement::removedFrom(insertionPoint, next);
 | 
|      if (insertionPoint->inDocument() && !insertionPoint->isInShadowTree())
 | 
|          document().removeTitle(this);
 | 
|  }
 | 
| 
 |