| Index: Source/core/html/HTMLInputElement.cpp
|
| diff --git a/Source/core/html/HTMLInputElement.cpp b/Source/core/html/HTMLInputElement.cpp
|
| index d0704564663d4357c2add46e8a78209cd188920e..e3f3c3a5c11ea366056e99352f0a5c85d379d39a 100644
|
| --- a/Source/core/html/HTMLInputElement.cpp
|
| +++ b/Source/core/html/HTMLInputElement.cpp
|
| @@ -1446,9 +1446,9 @@ void HTMLInputElement::willChangeForm()
|
| HTMLTextFormControlElement::willChangeForm();
|
| }
|
|
|
| -void HTMLInputElement::didChangeForm()
|
| +void HTMLInputElement::didChangeForm(HTMLFormElement* oldForm)
|
| {
|
| - HTMLTextFormControlElement::didChangeForm();
|
| + HTMLTextFormControlElement::didChangeForm(oldForm);
|
| addToRadioButtonGroup();
|
| }
|
|
|
|
|