| Index: Source/core/html/HTMLInputElement.cpp
|
| diff --git a/Source/core/html/HTMLInputElement.cpp b/Source/core/html/HTMLInputElement.cpp
|
| index 62be9db10c35012ef74ade454e5a30909b24b428..f96a15f41ea10d7dd85013332c924449b28d3fcc 100644
|
| --- a/Source/core/html/HTMLInputElement.cpp
|
| +++ b/Source/core/html/HTMLInputElement.cpp
|
| @@ -419,7 +419,7 @@ void HTMLInputElement::updateType()
|
| return;
|
| }
|
|
|
| - OwnPtr<InputType> newType = InputType::create(this, newTypeName);
|
| + RefPtr<InputType> newType = InputType::create(this, newTypeName);
|
| removeFromRadioButtonGroup();
|
|
|
| bool didStoreValue = m_inputType->storesValueSeparateFromAttribute();
|
|
|