| Index: third_party/WebKit/Source/core/html/forms/RadioInputType.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/forms/RadioInputType.cpp b/third_party/WebKit/Source/core/html/forms/RadioInputType.cpp
|
| index ed9afd7b6a38f98c8a5cac9fc199c402502a0738..12e7e5d98bba7848666058ecebc1ef8c1fd35f46 100644
|
| --- a/third_party/WebKit/Source/core/html/forms/RadioInputType.cpp
|
| +++ b/third_party/WebKit/Source/core/html/forms/RadioInputType.cpp
|
| @@ -126,9 +126,10 @@ void RadioInputType::handleKeydownEvent(KeyboardEvent* event) {
|
| }
|
| }
|
| if (inputElement) {
|
| - document.setFocusedElement(inputElement,
|
| - FocusParams(SelectionBehaviorOnFocus::Restore,
|
| - WebFocusTypeNone, nullptr));
|
| + document.setFocusedElement(
|
| + inputElement,
|
| + FocusParams(SelectionBehaviorOnFocus::Restore, WebFocusTypeNone,
|
| + InputDeviceCapabilities::Null));
|
| inputElement->dispatchSimulatedClick(event, SendNoEvents);
|
| event->setDefaultHandled();
|
| return;
|
|
|