Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(454)

Unified Diff: third_party/WebKit/Source/core/html/shadow/DateTimeFieldElement.cpp

Issue 2393133004: reflow comments in core/html/shadow (Closed)
Patch Set: oops Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();

Powered by Google App Engine
This is Rietveld 408576698