| Index: third_party/WebKit/Source/core/html/shadow/DateTimeFieldElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/shadow/DateTimeFieldElement.cpp b/third_party/WebKit/Source/core/html/shadow/DateTimeFieldElement.cpp
|
| index b38c28cd7fc5e780a7cc82b736dd7dbd36d60dc7..c457efdf67c88355975afb92616c5ccbf718688c 100644
|
| --- a/third_party/WebKit/Source/core/html/shadow/DateTimeFieldElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/shadow/DateTimeFieldElement.cpp
|
| @@ -89,8 +89,8 @@ void DateTimeFieldElement::defaultKeyboardEventHandler(
|
| if (key == "ArrowLeft") {
|
| if (!m_fieldOwner)
|
| return;
|
| - // FIXME: We'd like to use FocusController::advanceFocus(FocusDirectionLeft, ...)
|
| - // but it doesn't work for shadow nodes. webkit.org/b/104650
|
| + // FIXME: We'd like to use FocusController::advanceFocus(FocusDirectionLeft,
|
| + // ...) but it doesn't work for shadow nodes. webkit.org/b/104650
|
| if (!localeForOwner().isRTL() && m_fieldOwner->focusOnPreviousField(*this))
|
| keyboardEvent->setDefaultHandled();
|
| return;
|
| @@ -99,7 +99,8 @@ void DateTimeFieldElement::defaultKeyboardEventHandler(
|
| if (key == "ArrowRight") {
|
| if (!m_fieldOwner)
|
| return;
|
| - // FIXME: We'd like to use FocusController::advanceFocus(FocusDirectionRight, ...)
|
| + // FIXME: We'd like to use
|
| + // FocusController::advanceFocus(FocusDirectionRight, ...)
|
| // but it doesn't work for shadow nodes. webkit.org/b/104650
|
| if (!localeForOwner().isRTL() && m_fieldOwner->focusOnNextField(*this))
|
| keyboardEvent->setDefaultHandled();
|
|
|