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

mrobinson at webkit.org mrobinson at webkit.org
Wed Dec 22 11:40:52 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 41a6237a5365eba32e156830bed00a77a992bc5c
Author: mrobinson at webkit.org <mrobinson at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Aug 3 18:56:57 2010 +0000

    2010-08-03  Martin Robinson  <mrobinson at igalia.com>
    
            Reviewed by Ojan Vafai.
    
            [GTK] Incorrect keyIdentifier for print screen key events
            https://bugs.webkit.org/show_bug.cgi?id=43422
    
            Unskip a test which is now passing.
    
            * platform/gtk/Skipped:
    2010-08-03  Martin Robinson  <mrobinson at igalia.com>
    
            Reviewed by Ojan Vafai.
    
            [GTK] Incorrect keyIdentifier for print screen key events
            https://bugs.webkit.org/show_bug.cgi?id=43422
    
            Produce the correct keyIdentifier for GDK_Print (print screen).
    
            * platform/gtk/KeyEventGtk.cpp:
            (WebCore::keyIdentifierForGdkKeyCode):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@64573 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index 67ddc4c..46fc06f 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -1,5 +1,16 @@
 2010-08-03  Martin Robinson  <mrobinson at igalia.com>
 
+        Reviewed by Ojan Vafai.
+
+        [GTK] Incorrect keyIdentifier for print screen key events
+        https://bugs.webkit.org/show_bug.cgi?id=43422
+
+        Unskip a test which is now passing.
+
+        * platform/gtk/Skipped:
+
+2010-08-03  Martin Robinson  <mrobinson at igalia.com>
+
         [GTK] Incorrect keyIdentifier for print screen key events
         https://bugs.webkit.org/show_bug.cgi?id=43422
 
diff --git a/LayoutTests/platform/gtk/Skipped b/LayoutTests/platform/gtk/Skipped
index 930fe56..615a37e 100644
--- a/LayoutTests/platform/gtk/Skipped
+++ b/LayoutTests/platform/gtk/Skipped
@@ -5864,7 +5864,3 @@ inspector/debugger-breakpoints-not-activated-on-reload.html
 # register as a triple-click even though the mouse have moved
 # outside of the double-click distance.
 editing/selection/5195166-1.html
-
-# Wrong keyIdentifier generated for PrintScreen key events
-# https://bugs.webkit.org/show_bug.cgi?id=43422
-fast/events/special-key-events-in-input-text.html
diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 9f78132..30fd2b4 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,15 @@
+2010-08-03  Martin Robinson  <mrobinson at igalia.com>
+
+        Reviewed by Ojan Vafai.
+
+        [GTK] Incorrect keyIdentifier for print screen key events
+        https://bugs.webkit.org/show_bug.cgi?id=43422
+
+        Produce the correct keyIdentifier for GDK_Print (print screen).
+
+        * platform/gtk/KeyEventGtk.cpp:
+        (WebCore::keyIdentifierForGdkKeyCode):
+
 2010-08-03  Anton Muhin  <antonm at chromium.org>
 
         Reviewed by David Levin.
diff --git a/WebCore/platform/gtk/KeyEventGtk.cpp b/WebCore/platform/gtk/KeyEventGtk.cpp
index e9756d8..f90647d 100644
--- a/WebCore/platform/gtk/KeyEventGtk.cpp
+++ b/WebCore/platform/gtk/KeyEventGtk.cpp
@@ -126,6 +126,7 @@ static String keyIdentifierForGdkKeyCode(guint keyCode)
         case GDK_Pause:
             return "Pause";
         case GDK_3270_PrintScreen:
+        case GDK_Print:
             return "PrintScreen";
         case GDK_Right:
             return "Right";

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list