Index: Source/core/html/HTMLInputElement.cpp |
diff --git a/Source/core/html/HTMLInputElement.cpp b/Source/core/html/HTMLInputElement.cpp |
index 6e13bc0d98d06a472e7136973da9ab0970a5fddf..b70898b443838f5b752f9d93d201db0039fe1d4f 100644 |
--- a/Source/core/html/HTMLInputElement.cpp |
+++ b/Source/core/html/HTMLInputElement.cpp |
@@ -845,7 +845,7 @@ void HTMLInputElement::setChecked(bool nowChecked, TextFieldEventBehavior eventB |
if (RadioButtonGroupScope* scope = radioButtonGroupScope()) |
scope->updateCheckedState(this); |
if (renderer() && renderer()->style()->hasAppearance()) |
- RenderTheme::theme().stateChanged(renderer(), CheckedState); |
+ RenderTheme::theme().stateChanged(renderer(), CheckedControlState); |
setNeedsValidityCheck(); |
@@ -882,7 +882,7 @@ void HTMLInputElement::setIndeterminate(bool newValue) |
didAffectSelector(AffectedSelectorIndeterminate); |
if (renderer() && renderer()->style()->hasAppearance()) |
- RenderTheme::theme().stateChanged(renderer(), CheckedState); |
+ RenderTheme::theme().stateChanged(renderer(), CheckedControlState); |
} |
int HTMLInputElement::size() const |