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

eric at webkit.org eric at webkit.org
Thu Apr 8 02:21:55 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit 4fa02887ba867695ac8794d7e3c3eff4eff2b60d
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sat Mar 13 18:54:12 2010 +0000

    2010-03-13  Kim Grönholm  <kim.gronholm at nomovok.com>
    
            Reviewed by Kenneth Rohde Christiansen.
    
            [Qt] GraphicsLayer: Opacity transitions end with begin value
            https://bugs.webkit.org/show_bug.cgi?id=36019
    
            * platform/graphics/qt/GraphicsLayerQt.cpp:
            (WebCore::AnimationQt::updateCurrentTime):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@55966 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index e513187..1c413b6 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,13 @@
+2010-03-13  Kim Grönholm  <kim.gronholm at nomovok.com>
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        [Qt] GraphicsLayer: Opacity transitions end with begin value
+        https://bugs.webkit.org/show_bug.cgi?id=36019
+
+        * platform/graphics/qt/GraphicsLayerQt.cpp:
+        (WebCore::AnimationQt::updateCurrentTime):
+
 2010-03-13  Dirk Schulze  <krit at webkit.org>
 
         No review, rolling out r55927.
diff --git a/WebCore/platform/graphics/qt/GraphicsLayerQt.cpp b/WebCore/platform/graphics/qt/GraphicsLayerQt.cpp
index 9a2e932..68a3063 100644
--- a/WebCore/platform/graphics/qt/GraphicsLayerQt.cpp
+++ b/WebCore/platform/graphics/qt/GraphicsLayerQt.cpp
@@ -1043,7 +1043,7 @@ protected:
 
         typename QMap<qreal, KeyframeValueQt<T> >::iterator it2 = it+1;
         if (it2 == m_keyframeValues.end())
-            it2 = m_keyframeValues.begin();
+            it2 = it;
         const KeyframeValueQt<T>& fromKeyframe = it.value();
         const KeyframeValueQt<T>& toKeyframe = it2.value();
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list