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

andersca at apple.com andersca at apple.com
Wed Dec 22 18:47:04 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 31d421d86d276a1ac059ecd66431b485c562105a
Author: andersca at apple.com <andersca at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Dec 17 22:24:05 2010 +0000

    Remove a check that probably uncovered a resizing bug.
    
    Reviewed by Sam Weinig.
    
    * UIProcess/DrawingAreaProxy.cpp:
    (WebKit::DrawingAreaProxy::setSize):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@74295 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit2/ChangeLog b/WebKit2/ChangeLog
index 0da2182..458fad1 100644
--- a/WebKit2/ChangeLog
+++ b/WebKit2/ChangeLog
@@ -1,3 +1,12 @@
+2010-12-17  Anders Carlsson  <andersca at apple.com>
+
+        Reviewed by Sam Weinig.
+
+        Remove a check that probably uncovered a resizing bug.
+
+        * UIProcess/DrawingAreaProxy.cpp:
+        (WebKit::DrawingAreaProxy::setSize):
+
 2010-12-17  Brian Weinstein  <bweinstein at apple.com>
 
         Qt build fix.
diff --git a/WebKit2/UIProcess/DrawingAreaProxy.cpp b/WebKit2/UIProcess/DrawingAreaProxy.cpp
index c026968..86637a4 100644
--- a/WebKit2/UIProcess/DrawingAreaProxy.cpp
+++ b/WebKit2/UIProcess/DrawingAreaProxy.cpp
@@ -47,9 +47,6 @@ DrawingAreaInfo::Identifier DrawingAreaProxy::nextIdentifier()
 
 void DrawingAreaProxy::setSize(const IntSize& size)
 { 
-    if (m_size == size)
-        return;
-
     m_size = size;
     sizeDidChange();
 }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list