| 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 db8af6744e0bbcb9994a38bfaa966165909090ab..6489494298abf168c7681e486a26380b9beff14b 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLSelectElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLSelectElement.cpp
|
| @@ -70,7 +70,6 @@
|
| #include "core/page/ChromeClient.h"
|
| #include "core/page/Page.h"
|
| #include "core/page/SpatialNavigation.h"
|
| -#include "platform/PlatformMouseEvent.h"
|
| #include "platform/PopupMenu.h"
|
| #include "platform/instrumentation/tracing/TraceEvent.h"
|
| #include "platform/text/PlatformLocale.h"
|
| @@ -1288,7 +1287,7 @@ void HTMLSelectElement::menuListDefaultEventHandler(Event* event) {
|
| return;
|
|
|
| int ignoreModifiers = PlatformEvent::ShiftKey | PlatformEvent::CtrlKey |
|
| - PlatformEvent::AltKey | PlatformMouseEvent::MetaKey;
|
| + PlatformEvent::AltKey | PlatformEvent::MetaKey;
|
| if (keyEvent->modifiers() & ignoreModifiers)
|
| return;
|
|
|
|
|