| Index: third_party/WebKit/Source/core/html/forms/MultipleFieldsTemporalInputTypeView.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/forms/MultipleFieldsTemporalInputTypeView.cpp b/third_party/WebKit/Source/core/html/forms/MultipleFieldsTemporalInputTypeView.cpp
|
| index 74894c0bb754220a6e4e8d975af9be5790934e91..30e0bdf40bc25357290a2d69eebdfd86628860f1 100644
|
| --- a/third_party/WebKit/Source/core/html/forms/MultipleFieldsTemporalInputTypeView.cpp
|
| +++ b/third_party/WebKit/Source/core/html/forms/MultipleFieldsTemporalInputTypeView.cpp
|
| @@ -436,7 +436,7 @@ void MultipleFieldsTemporalInputTypeView::handleKeydownEvent(KeyboardEvent* even
|
| if (!element().focused())
|
| return;
|
| if (m_pickerIndicatorIsVisible
|
| - && ((event->keyIdentifier() == "Down" && event->getModifierState("Alt")) || (LayoutTheme::theme().shouldOpenPickerWithF4Key() && event->keyIdentifier() == "F4"))) {
|
| + && ((event->key() == "ArrowDown" && event->getModifierState("Alt")) || (LayoutTheme::theme().shouldOpenPickerWithF4Key() && event->key() == "F4"))) {
|
| if (PickerIndicatorElement* element = pickerIndicatorElement())
|
| element->openPopup();
|
| event->setDefaultHandled();
|
|
|