| 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 bf75ddf1713273e7dbfc0962f824227ae8abb7ae..fe352c535ecfc9d2a09be45fb60f8816fffa66a6 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;
|
|
|
|
|