[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

commit-queue at webkit.org commit-queue at webkit.org
Wed Dec 22 13:36:06 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 96c475685f9773574c03347865d38678d45c3710
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Sep 21 05:25:18 2010 +0000

    2010-09-20  Kwang Yul Seo  <skyul at company100.net>
    
            Reviewed by Daniel Bates.
    
            [BREWMP] Handle tab key
            https://bugs.webkit.org/show_bug.cgi?id=46104
    
            In Brew MP, AVK_FUNCTION is the key code for tab.
            Process AVK_FUNCTION as tab in PlatformKeyboardEvent.
    
            * platform/brew/PlatformKeyboardEventBrew.cpp:
            (WebCore::keyIdentifierForBrewKeyCode):
            (WebCore::windowsKeyCodeForKeyEvent):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@67925 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index b575755..af731b2 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,17 @@
+2010-09-20  Kwang Yul Seo  <skyul at company100.net>
+
+        Reviewed by Daniel Bates.
+
+        [BREWMP] Handle tab key
+        https://bugs.webkit.org/show_bug.cgi?id=46104
+
+        In Brew MP, AVK_FUNCTION is the key code for tab.
+        Process AVK_FUNCTION as tab in PlatformKeyboardEvent.
+
+        * platform/brew/PlatformKeyboardEventBrew.cpp:
+        (WebCore::keyIdentifierForBrewKeyCode):
+        (WebCore::windowsKeyCodeForKeyEvent):
+
 2010-09-20  Sheriff Bot  <webkit.review.bot at gmail.com>
 
         Unreviewed, rolling out r67918.
diff --git a/WebCore/platform/brew/PlatformKeyboardEventBrew.cpp b/WebCore/platform/brew/PlatformKeyboardEventBrew.cpp
index d7a1279..3384a4f 100644
--- a/WebCore/platform/brew/PlatformKeyboardEventBrew.cpp
+++ b/WebCore/platform/brew/PlatformKeyboardEventBrew.cpp
@@ -98,6 +98,8 @@ static String keyIdentifierForBrewKeyCode(uint16 keyCode)
         return "PageUp";
     case AVK_TXPGDOWN:
         return "PageDown";
+    case AVK_FUNCTION:
+        return "U+0009";
     default:
         return String::format("U+%04X", toASCIIUpper(keyCode));
     }
@@ -132,6 +134,8 @@ static int windowsKeyCodeForKeyEvent(uint16 code)
         return VK_INSERT; // (2D) INS key
     case AVK_TXDELETE:
         return VK_DELETE; // (2E) DEL key
+    case AVK_FUNCTION:
+        return VK_TAB; // (09) TAB key
     default:
         return 0;
     }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list