[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 12:58:36 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 5f9e18103ece1054d15a214e83e28ff5c37ae138
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Sep 3 12:12:54 2010 +0000

    2010-09-03  Bharathwaaj Srinivasan  <bharathwaaj.s at gmail.com>
    
            Reviewed by Xan Lopez.
    
            Initialize keyboard events before passing plugins.
            https://bugs.webkit.org/show_bug.cgi?id=44771
    
            No new tests needed since this is a trivial fix.
    
            * plugins/gtk/PluginViewGtk.cpp:
            (WebCore::PluginView::handleKeyboardEvent):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@66723 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 511d27d..0e25909 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,15 @@
+2010-09-03  Bharathwaaj Srinivasan  <bharathwaaj.s at gmail.com>
+
+        Reviewed by Xan Lopez.
+
+        Initialize keyboard events before passing plugins.
+        https://bugs.webkit.org/show_bug.cgi?id=44771
+
+        No new tests needed since this is a trivial fix.
+
+        * plugins/gtk/PluginViewGtk.cpp:
+        (WebCore::PluginView::handleKeyboardEvent):
+
 2010-09-03  Yury Semikhatsky  <yurys at chromium.org>
 
         Unreviewed. Fix Qt compilation.
diff --git a/WebCore/plugins/gtk/PluginViewGtk.cpp b/WebCore/plugins/gtk/PluginViewGtk.cpp
index ab43bf4..423a05a 100644
--- a/WebCore/plugins/gtk/PluginViewGtk.cpp
+++ b/WebCore/plugins/gtk/PluginViewGtk.cpp
@@ -299,6 +299,7 @@ void PluginView::handleKeyboardEvent(KeyboardEvent* event)
 
     NPEvent xEvent;
 #if defined(XP_UNIX)
+    initXEvent(&xEvent);
     GdkEventKey* gdkEvent = event->keyEvent()->gdkEventKey();
 
     xEvent.type = (event->type() == eventNames().keydownEvent) ? 2 : 3; // KeyPress/Release get unset somewhere

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list