Index: Source/web/WebInputElement.cpp |
diff --git a/Source/web/WebInputElement.cpp b/Source/web/WebInputElement.cpp |
index e11deb62a2a81c85a9a965a5589ef9531d81bcab..58648d3836decf1592f4362479cdeb024266be24 100644 |
--- a/Source/web/WebInputElement.cpp |
+++ b/Source/web/WebInputElement.cpp |
@@ -107,9 +107,9 @@ bool WebInputElement::isValidValue(const WebString& value) const |
return constUnwrap<HTMLInputElement>()->isValidValue(value); |
} |
-void WebInputElement::setChecked(bool nowChecked, bool sendChangeEvent) |
+void WebInputElement::setChecked(bool nowChecked, bool sendEvents) |
{ |
- unwrap<HTMLInputElement>()->setChecked(nowChecked, sendChangeEvent ? DispatchChangeEvent : DispatchNoEvent); |
+ unwrap<HTMLInputElement>()->setChecked(nowChecked, sendEvents ? DispatchInputAndChangeEvent : DispatchNoEvent); |
} |
bool WebInputElement::isChecked() const |