Title: [105080] branches/safari-534.54-branch/Source/WebCore

Diff

Modified: branches/safari-534.54-branch/Source/WebCore/ChangeLog (105079 => 105080)


--- branches/safari-534.54-branch/Source/WebCore/ChangeLog	2012-01-16 19:28:30 UTC (rev 105079)
+++ branches/safari-534.54-branch/Source/WebCore/ChangeLog	2012-01-16 19:50:15 UTC (rev 105080)
@@ -1,3 +1,23 @@
+2011-1-16  Lucas Forschler  <[email protected]>
+
+    Merge 91324
+
+    2011-07-19  Simon Fraser  <[email protected]>
+
+            REGRESSION (r91136-r91146): 40 tests failing on Windows 7 Release (Tests)
+            https://bugs.webkit.org/show_bug.cgi?id=64808
+
+            Reviewed by Adam Roben.
+
+            Initializing m_uncommittedChanges to a non-zero value
+            caused the first call to noteLayerPropertyChanged() to
+            not call m_client->notifySyncRequired(). This resulted in
+            animations never getting committed on Windows, which broke
+            a lot of tests.
+
+            * platform/graphics/ca/GraphicsLayerCA.cpp:
+            (WebCore::GraphicsLayerCA::GraphicsLayerCA):
+
 2011-1-13  Lucas Forschler  <[email protected]>
 
     Merge 104352

Modified: branches/safari-534.54-branch/Source/WebCore/platform/graphics/ca/GraphicsLayerCA.cpp (105079 => 105080)


--- branches/safari-534.54-branch/Source/WebCore/platform/graphics/ca/GraphicsLayerCA.cpp	2012-01-16 19:28:30 UTC (rev 105079)
+++ branches/safari-534.54-branch/Source/WebCore/platform/graphics/ca/GraphicsLayerCA.cpp	2012-01-16 19:50:15 UTC (rev 105080)
@@ -250,7 +250,7 @@
     , m_contentsLayerPurpose(NoContentsLayer)
     , m_contentsLayerHasBackgroundColor(false)
     , m_allowTiledLayer(true)
-    , m_uncommittedChanges(ContentsScaleChanged)
+    , m_uncommittedChanges(0)
 {
     m_layer = PlatformCALayer::create(PlatformCALayer::LayerTypeWebLayer, this);
 
@@ -259,6 +259,7 @@
 #endif
 
     updateDebugIndicators();
+    noteLayerPropertyChanged(ContentsScaleChanged);
 }
 
 GraphicsLayerCA::~GraphicsLayerCA()
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to