| Index: third_party/WebKit/Source/core/html/HTMLFormControlElementWithState.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLFormControlElementWithState.cpp b/third_party/WebKit/Source/core/html/HTMLFormControlElementWithState.cpp
|
| index 88c2036dd753fff77b4855e7a4dd13cef236dfca..f0fdf9193da0ee579dc77368129cfd69fd18bee7 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLFormControlElementWithState.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLFormControlElementWithState.cpp
|
| @@ -50,11 +50,11 @@ Node::InsertionNotificationRequest HTMLFormControlElementWithState::insertedInto
|
| return HTMLFormControlElement::insertedInto(insertionPoint);
|
| }
|
|
|
| -void HTMLFormControlElementWithState::removedFrom(ContainerNode* insertionPoint)
|
| +void HTMLFormControlElementWithState::removedFrom(ContainerNode* insertionPoint, Node* next)
|
| {
|
| if (insertionPoint->inDocument() && !containingShadowRoot() && !insertionPoint->containingShadowRoot())
|
| document().formController().unregisterStatefulFormControl(*this);
|
| - HTMLFormControlElement::removedFrom(insertionPoint);
|
| + HTMLFormControlElement::removedFrom(insertionPoint, next);
|
| }
|
|
|
| bool HTMLFormControlElementWithState::shouldAutocomplete() const
|
|
|