| Index: third_party/WebKit/Source/core/html/HTMLSelectElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLSelectElement.cpp b/third_party/WebKit/Source/core/html/HTMLSelectElement.cpp
|
| index ad5881b756492646994e8e6e03e37bfd44a8f479..1011b1ab1ea292e4fbe8e79d8520d82149500b4f 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLSelectElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLSelectElement.cpp
|
| @@ -1286,8 +1286,8 @@ void HTMLSelectElement::menuListDefaultEventHandler(Event* event) {
|
| !isSpatialNavigationEnabled(document().frame()))
|
| return;
|
|
|
| - int ignoreModifiers = PlatformEvent::ShiftKey | PlatformEvent::CtrlKey |
|
| - PlatformEvent::AltKey | PlatformEvent::MetaKey;
|
| + int ignoreModifiers = WebInputEvent::ShiftKey | WebInputEvent::ControlKey |
|
| + WebInputEvent::AltKey | WebInputEvent::MetaKey;
|
| if (keyEvent->modifiers() & ignoreModifiers)
|
| return;
|
|
|
|
|