[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 13:23:33 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 903770e3ff49986fb750c48b22a893d7dd3161b8
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Sep 14 01:10:21 2010 +0000

    2010-09-13  Patrick Gansterer  <paroga at paroga.com>
    
            Reviewed by Kenneth Rohde Christiansen.
    
            [WINCE] Buildfix for ViewportArguments.cpp
            https://bugs.webkit.org/show_bug.cgi?id=45678
    
            Use fabs() instead of abs().
            This patch also fixes the return value, when
            the value is between -1 and 1.
    
            * dom/ViewportArguments.cpp:
            (WebCore::findUserScalableValue):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@67427 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index db07543..1e91712 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,17 @@
+2010-09-13  Patrick Gansterer  <paroga at paroga.com>
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        [WINCE] Buildfix for ViewportArguments.cpp
+        https://bugs.webkit.org/show_bug.cgi?id=45678
+
+        Use fabs() instead of abs().
+        This patch also fixes the return value, when
+        the value is between -1 and 1.
+
+        * dom/ViewportArguments.cpp:
+        (WebCore::findUserScalableValue):
+
 2010-09-13  Darin Adler  <darin at apple.com>
 
         Reviewed by Adam Barth.
diff --git a/WebCore/dom/ViewportArguments.cpp b/WebCore/dom/ViewportArguments.cpp
index 415506e..356f9ed 100644
--- a/WebCore/dom/ViewportArguments.cpp
+++ b/WebCore/dom/ViewportArguments.cpp
@@ -251,7 +251,7 @@ static bool findUserScalableValue(const String& keyString, const String& valueSt
         return false;
     }
 
-    if (abs(value) < 0)
+    if (fabs(value) < 1)
         return false;
 
     return true;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list