| Index: third_party/WebKit/Source/core/html/HTMLInputElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLInputElement.cpp b/third_party/WebKit/Source/core/html/HTMLInputElement.cpp
|
| index 82dee5c3093090f07e209f6bcfafdb4c5f17249f..66964b1d31cb1258c171ee9951f0830ae097a3c1 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLInputElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLInputElement.cpp
|
| @@ -899,10 +899,10 @@ bool HTMLInputElement::checked() const
|
|
|
| void HTMLInputElement::setChecked(bool nowChecked, TextFieldEventBehavior eventBehavior)
|
| {
|
| + m_reflectsCheckedAttribute = false;
|
| if (checked() == nowChecked)
|
| return;
|
|
|
| - m_reflectsCheckedAttribute = false;
|
| m_isChecked = nowChecked;
|
|
|
| if (RadioButtonGroupScope* scope = radioButtonGroupScope())
|
|
|