| Index: third_party/WebKit/Source/core/html/HTMLStyleElement.cpp
 | 
| diff --git a/third_party/WebKit/Source/core/html/HTMLStyleElement.cpp b/third_party/WebKit/Source/core/html/HTMLStyleElement.cpp
 | 
| index f5628764480852af240db9990ff4a69e4cf1b48c..030fd112cc82c9537d66ccde7508813ff1cd82b0 100644
 | 
| --- a/third_party/WebKit/Source/core/html/HTMLStyleElement.cpp
 | 
| +++ b/third_party/WebKit/Source/core/html/HTMLStyleElement.cpp
 | 
| @@ -90,9 +90,9 @@ Node::InsertionNotificationRequest HTMLStyleElement::insertedInto(ContainerNode*
 | 
|      return InsertionShouldCallDidNotifySubtreeInsertions;
 | 
|  }
 | 
|  
 | 
| -void HTMLStyleElement::removedFrom(ContainerNode* insertionPoint)
 | 
| +void HTMLStyleElement::removedFrom(ContainerNode* insertionPoint, Node* next)
 | 
|  {
 | 
| -    HTMLElement::removedFrom(insertionPoint);
 | 
| +    HTMLElement::removedFrom(insertionPoint, next);
 | 
|      StyleElement::removedFrom(this, insertionPoint);
 | 
|  }
 | 
|  
 | 
| 
 |