[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.15.1-1414-gc69ee75

xan at webkit.org xan at webkit.org
Thu Oct 29 20:40:59 UTC 2009


The following commit has been merged in the webkit-1.1 branch:
commit 05425cf08c8bda15f49d6ad6a0202c2d9b6291bd
Author: xan at webkit.org <xan at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Oct 7 12:44:02 2009 +0000

    2009-10-07  Xan Lopez  <xlopez at igalia.com>
    
            Reviewed by Gustavo Noronha.
    
            "delete" in EventSender is the backspace key, not the delete one.
    
            * DumpRenderTree/gtk/EventSender.cpp:
            (keyDownCallback):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@49241 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index 43554f4..e55c444 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -2,6 +2,15 @@
 
         Reviewed by Gustavo Noronha.
 
+        "delete" in EventSender is the backspace key, not the delete one.
+
+        * DumpRenderTree/gtk/EventSender.cpp:
+        (keyDownCallback):
+
+2009-10-07  Xan Lopez  <xlopez at igalia.com>
+
+        Reviewed by Gustavo Noronha.
+
         getChildrenWithRange expects as last parameter the end index, not
         the length of the range. Correct this and clarify the variable
         names to reflect how the code works.
diff --git a/WebKitTools/DumpRenderTree/gtk/EventSender.cpp b/WebKitTools/DumpRenderTree/gtk/EventSender.cpp
index 8ee74c8..c3c72c1 100644
--- a/WebKitTools/DumpRenderTree/gtk/EventSender.cpp
+++ b/WebKitTools/DumpRenderTree/gtk/EventSender.cpp
@@ -381,7 +381,7 @@ static JSValueRef keyDownCallback(JSContextRef context, JSObjectRef function, JS
     else if (JSStringIsEqualToUTF8CString(character, "end"))
         gdkKeySym = GDK_End;
     else if (JSStringIsEqualToUTF8CString(character, "delete"))
-        gdkKeySym = GDK_Delete;
+        gdkKeySym = GDK_BackSpace;
     else if (JSStringIsEqualToUTF8CString(character, "F1"))
         gdkKeySym = GDK_F1;
     else if (JSStringIsEqualToUTF8CString(character, "F2"))

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list