| Index: third_party/WebKit/Source/core/html/HTMLBaseElement.cpp
 | 
| diff --git a/third_party/WebKit/Source/core/html/HTMLBaseElement.cpp b/third_party/WebKit/Source/core/html/HTMLBaseElement.cpp
 | 
| index 3348998d63b5af4b245520a77e545a19f785f100..0d6a282737928183ec9ea15d3039a341d4e7f2e2 100644
 | 
| --- a/third_party/WebKit/Source/core/html/HTMLBaseElement.cpp
 | 
| +++ b/third_party/WebKit/Source/core/html/HTMLBaseElement.cpp
 | 
| @@ -56,9 +56,9 @@ Node::InsertionNotificationRequest HTMLBaseElement::insertedInto(ContainerNode*
 | 
|      return InsertionDone;
 | 
|  }
 | 
|  
 | 
| -void HTMLBaseElement::removedFrom(ContainerNode* insertionPoint)
 | 
| +void HTMLBaseElement::removedFrom(ContainerNode* insertionPoint, Node* next)
 | 
|  {
 | 
| -    HTMLElement::removedFrom(insertionPoint);
 | 
| +    HTMLElement::removedFrom(insertionPoint, next);
 | 
|      if (insertionPoint->inDocument())
 | 
|          document().processBaseElement();
 | 
|  }
 | 
| 
 |