From: Ryuan Choi Date: Fri, 4 Oct 2013 05:06:59 +0000 (+0900) Subject: New lines are inserted in message text-box when press CTRL+M in Chatter. X-Git-Tag: 2.2.1_release~143 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bc13101cc229f4050b699382c2e093cda963308c;p=framework%2Fweb%2Fwebkit-efl.git New lines are inserted in message text-box when press CTRL+M in Chatter. [Title] New lines are inserted in message text-box when press CTRL+M in Chatter. [Issue#] N_SE-52737 [Problem] Linux generate \r for Ctrl + M and it was translated to newline in webkit. [Cause] This behavior is not clear on all browsers. [Solution] Removed translation Change-Id: I698261d14a5f9c72af2b21f9eec046bc2937ef1a --- diff --git a/Source/WebCore/platform/efl/EflKeyboardUtilities.cpp b/Source/WebCore/platform/efl/EflKeyboardUtilities.cpp index 3548435..a816fe2 100644 --- a/Source/WebCore/platform/efl/EflKeyboardUtilities.cpp +++ b/Source/WebCore/platform/efl/EflKeyboardUtilities.cpp @@ -290,7 +290,6 @@ static const KeyPressEntry keyPressEntries[] = { { '\t', 0, "InsertTab" }, { '\t', ShiftKey, "InsertBacktab" }, { '\r', 0, "InsertNewline" }, - { '\r', CtrlKey, "InsertNewline" }, { '\r', AltKey, "InsertNewline" }, { '\r', AltKey | ShiftKey, "InsertNewline" }, };