[SCM] WebKit Debian packaging branch, webkit-1.3, updated. upstream/1.3.7-4207-g178b198

kdecker at apple.com kdecker at apple.com
Sun Feb 20 23:40:28 UTC 2011


The following commit has been merged in the webkit-1.3 branch:
commit bc7cfb69c8d20d665237b14fe2d043ed9e471051
Author: kdecker at apple.com <kdecker at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sun Jan 23 23:50:52 2011 +0000

    2011-01-23  Damian Kaleta  <dkaleta at apple.com>
    
            Reviewed by Kevin Decker.
    
            <rdar://problem/8905171>
            https://bugs.webkit.org/show_bug.cgi?id=52985
    
            * UIProcess/WebPageProxy.cpp:
            (WebKit::WebPageProxy::scaleWebView): Eliminated early return inside WebPageProxy::scaleWebView, making it
            consistent with WebKit1.
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@76473 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/Source/WebKit2/ChangeLog b/Source/WebKit2/ChangeLog
index 1f79716..07f641d 100644
--- a/Source/WebKit2/ChangeLog
+++ b/Source/WebKit2/ChangeLog
@@ -1,3 +1,14 @@
+2011-01-23  Damian Kaleta  <dkaleta at apple.com>
+
+        Reviewed by Kevin Decker.
+
+        <rdar://problem/8905171>
+        https://bugs.webkit.org/show_bug.cgi?id=52985 
+
+        * UIProcess/WebPageProxy.cpp:
+        (WebKit::WebPageProxy::scaleWebView): Eliminated early return inside WebPageProxy::scaleWebView, making it 
+        consistent with WebKit1.
+
 2011-01-23  Alexey Proskuryakov  <ap at apple.com>
 
         Reviewed by Dan Bernstein.
diff --git a/Source/WebKit2/UIProcess/WebPageProxy.cpp b/Source/WebKit2/UIProcess/WebPageProxy.cpp
index 1da3ebd..e7b4277 100644
--- a/Source/WebKit2/UIProcess/WebPageProxy.cpp
+++ b/Source/WebKit2/UIProcess/WebPageProxy.cpp
@@ -890,9 +890,6 @@ void WebPageProxy::scaleWebView(double scale, const IntPoint& origin)
     if (!isValid())
         return;
 
-    if (m_viewScaleFactor == scale)
-        return;
-
     m_viewScaleFactor = scale;
     process()->send(Messages::WebPage::ScaleWebView(scale, origin), m_pageID);
 }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list