Title: [111716] trunk
Revision
111716
Author
commit-qu...@webkit.org
Date
2012-03-22 09:59:46 -0700 (Thu, 22 Mar 2012)

Log Message

[EFL] Map BackSpace key code to Unicode value
https://bugs.webkit.org/show_bug.cgi?id=81130

Source/WebCore:

Patch by Sudarsana Nagineni <sudarsana.nagin...@linux.intel.com> on 2012-03-22
Reviewed by Gustavo Noronha Silva.

Test: fast/events/backspace-navigates-back.html

* platform/efl/EflKeyboardUtilities.cpp:
(WebCore::createKeyMap): Map BackSpace to Unicode value

LayoutTests:

Unskip fast/events/backspace-navigates-back.html

Patch by Sudarsana Nagineni <sudarsana.nagin...@linux.intel.com> on 2012-03-22
Reviewed by Gustavo Noronha Silva.

* platform/efl/Skipped:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (111715 => 111716)


--- trunk/LayoutTests/ChangeLog	2012-03-22 16:57:57 UTC (rev 111715)
+++ trunk/LayoutTests/ChangeLog	2012-03-22 16:59:46 UTC (rev 111716)
@@ -1,3 +1,14 @@
+2012-03-22  Sudarsana Nagineni  <sudarsana.nagin...@linux.intel.com>
+
+        [EFL] Map BackSpace key code to Unicode value
+        https://bugs.webkit.org/show_bug.cgi?id=81130
+
+        Unskip fast/events/backspace-navigates-back.html
+
+        Reviewed by Gustavo Noronha Silva.
+
+        * platform/efl/Skipped:
+
 2012-03-22  Szilard Ledan  <szle...@inf.u-szeged.hu>
 
         [Qt] Gardening, skip fast/dom/shadow/shadow-root-blur.html test because ENABLE(SHADOW_DOM) is disabled.

Modified: trunk/LayoutTests/platform/efl/Skipped (111715 => 111716)


--- trunk/LayoutTests/platform/efl/Skipped	2012-03-22 16:57:57 UTC (rev 111715)
+++ trunk/LayoutTests/platform/efl/Skipped	2012-03-22 16:59:46 UTC (rev 111716)
@@ -725,9 +725,6 @@
 # EFL's LayoutTestController does not implement authenticateSession
 http/tests/xmlhttprequest/cross-origin-authorization-with-embedder.html
 
-# Set unicode backspace value in EFL's createKeyMap
-fast/events/backspace-navigates-back.html
-
 # EFL's LayoutTestController does not implement abortModal
 fast/events/show-modal-dialog-onblur-onfocus.html
 fast/harness/show-modal-dialog.html

Modified: trunk/Source/WebCore/ChangeLog (111715 => 111716)


--- trunk/Source/WebCore/ChangeLog	2012-03-22 16:57:57 UTC (rev 111715)
+++ trunk/Source/WebCore/ChangeLog	2012-03-22 16:59:46 UTC (rev 111716)
@@ -1,3 +1,15 @@
+2012-03-22  Sudarsana Nagineni  <sudarsana.nagin...@linux.intel.com>
+
+        [EFL] Map BackSpace key code to Unicode value
+        https://bugs.webkit.org/show_bug.cgi?id=81130
+
+        Reviewed by Gustavo Noronha Silva.
+
+        Test: fast/events/backspace-navigates-back.html
+
+        * platform/efl/EflKeyboardUtilities.cpp:
+        (WebCore::createKeyMap): Map BackSpace to Unicode value
+
 2012-03-22  Abhishek Arya  <infe...@chromium.org>
 
         Incorrect beforeChild parent calculation in RenderRubyBase::moveChildren.

Modified: trunk/Source/WebCore/platform/efl/EflKeyboardUtilities.cpp (111715 => 111716)


--- trunk/Source/WebCore/platform/efl/EflKeyboardUtilities.cpp	2012-03-22 16:57:57 UTC (rev 111715)
+++ trunk/Source/WebCore/platform/efl/EflKeyboardUtilities.cpp	2012-03-22 16:59:46 UTC (rev 111716)
@@ -76,6 +76,7 @@
     keyMap().set("Delete", "U+007F");
     keyMap().set("Tab", "U+0009");
     keyMap().set("ISO_Left_Tab", "U+0009");
+    keyMap().set("BackSpace", "U+0008");
 }
 
 static void createWindowsKeyMap()
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to