| Index: third_party/WebKit/Source/core/html/forms/CheckboxInputType.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/forms/CheckboxInputType.cpp b/third_party/WebKit/Source/core/html/forms/CheckboxInputType.cpp
|
| index 5d28c34d20f8e6248cfb233028ec893f92b162ed..c4e6b5ecb09ca51eb8095f52af0cd26db03b3290 100644
|
| --- a/third_party/WebKit/Source/core/html/forms/CheckboxInputType.cpp
|
| +++ b/third_party/WebKit/Source/core/html/forms/CheckboxInputType.cpp
|
| @@ -63,8 +63,9 @@ void CheckboxInputType::handleKeyupEvent(KeyboardEvent* event) {
|
| }
|
|
|
| ClickHandlingState* CheckboxInputType::willDispatchClick() {
|
| - // An event handler can use preventDefault or "return false" to reverse the checking we do here.
|
| - // The ClickHandlingState object contains what we need to undo what we did here in didDispatchClick.
|
| + // An event handler can use preventDefault or "return false" to reverse the
|
| + // checking we do here. The ClickHandlingState object contains what we need
|
| + // to undo what we did here in didDispatchClick.
|
|
|
| ClickHandlingState* state = new ClickHandlingState;
|
|
|
|
|