[SCM] WebKit Debian packaging branch, webkit-1.2, updated. upstream/1.1.90-6072-g9a69373

laszlo.1.gombos at nokia.com laszlo.1.gombos at nokia.com
Thu Apr 8 01:12:00 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit f09a4741110ecb6dcd450eb4eaa7c250082cb840
Author: laszlo.1.gombos at nokia.com <laszlo.1.gombos at nokia.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Jan 18 05:41:52 2010 +0000

    2010-01-17  Srinidhi Shreedhara  <srinidhi.shreedhara at nokia.com>
    
            Reviewed by Simon Hausmann.
    
            [Qt] [Symbian] SetWindow call in npapi plugin does not happen when the cooridnates are negative
            https://bugs.webkit.org/show_bug.cgi?id=33573
    
            * plugins/symbian/PluginViewSymbian.cpp:
            (WebCore::PluginView::setNPWindowIfNeeded): Remove tests for negative
            coordinates for early return.
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@53390 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 4e39701..9a3e853 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,14 @@
+2010-01-17  Srinidhi Shreedhara  <srinidhi.shreedhara at nokia.com>
+
+        Reviewed by Simon Hausmann.
+
+        [Qt] [Symbian] SetWindow call in npapi plugin does not happen when the cooridnates are negative
+        https://bugs.webkit.org/show_bug.cgi?id=33573
+
+        * plugins/symbian/PluginViewSymbian.cpp:
+        (WebCore::PluginView::setNPWindowIfNeeded): Remove tests for negative
+        coordinates for early return.
+
 2010-01-17  Oliver Hunt  <oliver at apple.com>
 
         Reviewed by Dan Bernstein.
diff --git a/WebCore/plugins/symbian/PluginViewSymbian.cpp b/WebCore/plugins/symbian/PluginViewSymbian.cpp
index 98d88ed..045314d 100644
--- a/WebCore/plugins/symbian/PluginViewSymbian.cpp
+++ b/WebCore/plugins/symbian/PluginViewSymbian.cpp
@@ -281,8 +281,6 @@ void PluginView::setNPWindowIfNeeded()
 
     m_npWindow.width = m_windowRect.width();
     m_npWindow.height = m_windowRect.height();
-    if (m_npWindow.x < 0 || m_npWindow.y < 0 || m_npWindow.width <= 0 || m_npWindow.height <= 0)
-        return;
     
     PluginView::setCurrentPluginView(this);
     JSC::JSLock::DropAllLocks dropAllLocks(JSC::SilenceAssertionsOnly);

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list