[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 11:59:26 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 9401f0ceb1a116132694eb98e9e99f4e534fab8c
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Aug 12 15:58:32 2010 +0000

    2010-08-12  Hui Huang  <hui.2.huang at nokia.com>
    
            Reviewed by Eric Seidel.
    
            m_windowRect is not updated because parent of PluginView is not
            set when updatePluginWidget is called. plugin gets wrong window
            size on setwindow.
            https://bugs.webkit.org/show_bug.cgi?id=43635
    
            * plugins/symbian/PluginViewSymbian.cpp:
            (WebCore::PluginView::setParent):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@65249 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index d2b3c99..dfec2e5 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,15 @@
+2010-08-12  Hui Huang  <hui.2.huang at nokia.com>
+
+        Reviewed by Eric Seidel.
+
+        m_windowRect is not updated because parent of PluginView is not
+        set when updatePluginWidget is called. plugin gets wrong window
+        size on setwindow.
+        https://bugs.webkit.org/show_bug.cgi?id=43635
+
+        * plugins/symbian/PluginViewSymbian.cpp:
+        (WebCore::PluginView::setParent):
+
 2010-08-12  Pavel Feldman  <pfeldman at chromium.org>
 
         Not reviewed, re-apply r65241 and 65243.
diff --git a/WebCore/plugins/symbian/PluginViewSymbian.cpp b/WebCore/plugins/symbian/PluginViewSymbian.cpp
index baa9839..b9f82ad 100644
--- a/WebCore/plugins/symbian/PluginViewSymbian.cpp
+++ b/WebCore/plugins/symbian/PluginViewSymbian.cpp
@@ -242,8 +242,11 @@ void PluginView::setParent(ScrollView* parent)
 {
     Widget::setParent(parent);
 
-    if (parent)
+    if (parent) {
         init();
+        if (m_status == PluginStatusLoadedSuccessfully)
+            updatePluginWidget();
+    }
 }
 
 void PluginView::setNPWindowRect(const IntRect&)

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list