Index: third_party/WebKit/Source/core/input/KeyboardEventManager.cpp |
diff --git a/third_party/WebKit/Source/core/input/KeyboardEventManager.cpp b/third_party/WebKit/Source/core/input/KeyboardEventManager.cpp |
index bce0b9adfa2c295bc2b3f453c6555e99415da53b..16c50c7fd41b95a262c7eff06686ab76b10f0181 100644 |
--- a/third_party/WebKit/Source/core/input/KeyboardEventManager.cpp |
+++ b/third_party/WebKit/Source/core/input/KeyboardEventManager.cpp |
@@ -166,11 +166,6 @@ void KeyboardEventManager::defaultKeyboardEventHandler( |
KeyboardEvent* event, Node* possibleFocusedNode) |
{ |
if (event->type() == EventTypeNames::keydown) { |
- // Clear caret blinking suspended state to make sure that caret blinks |
- // when we type again after long pressing on an empty input field. |
- if (m_frame && m_frame->selection().isCaretBlinkingSuspended()) |
- m_frame->selection().setCaretBlinkingSuspended(false); |
- |
m_frame->editor().handleKeyboardEvent(event); |
if (event->defaultHandled()) |
return; |