Title: [86666] trunk/Source/WebCore
Revision
86666
Author
[email protected]
Date
2011-05-17 04:34:53 -0700 (Tue, 17 May 2011)

Log Message

2011-05-17  Andreas Kling  <[email protected]>

        Reviewed by Kenneth Rohde Christiansen.

        [Qt] Construct GraphicsLayerQtImpl::State with correct values.
        https://bugs.webkit.org/show_bug.cgi?id=60902

        The GraphicsLayerQtImpl initial state should match the initial values
        of the corresponding GraphicsLayer flags.

        * platform/graphics/qt/GraphicsLayerQt.cpp:
        (WebCore::GraphicsLayerQtImpl::State::State):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (86665 => 86666)


--- trunk/Source/WebCore/ChangeLog	2011-05-17 10:12:12 UTC (rev 86665)
+++ trunk/Source/WebCore/ChangeLog	2011-05-17 11:34:53 UTC (rev 86666)
@@ -1,3 +1,16 @@
+2011-05-17  Andreas Kling  <[email protected]>
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        [Qt] Construct GraphicsLayerQtImpl::State with correct values.
+        https://bugs.webkit.org/show_bug.cgi?id=60902
+
+        The GraphicsLayerQtImpl initial state should match the initial values
+        of the corresponding GraphicsLayer flags.
+
+        * platform/graphics/qt/GraphicsLayerQt.cpp:
+        (WebCore::GraphicsLayerQtImpl::State::State):
+
 2011-05-12  Hans Wennborg  <[email protected]>
 
         Reviewed by Steve Block.

Modified: trunk/Source/WebCore/platform/graphics/qt/GraphicsLayerQt.cpp (86665 => 86666)


--- trunk/Source/WebCore/platform/graphics/qt/GraphicsLayerQt.cpp	2011-05-17 10:12:12 UTC (rev 86665)
+++ trunk/Source/WebCore/platform/graphics/qt/GraphicsLayerQt.cpp	2011-05-17 11:34:53 UTC (rev 86666)
@@ -299,12 +299,13 @@
 
         State()
             : maskLayer(0)
+            , contentsOrientation(GraphicsLayer::CompositingCoordinatesTopDown)
             , opacity(1.f)
             , preserves3D(false)
             , masksToBounds(false)
             , drawsContent(false)
             , contentsOpaque(false)
-            , backfaceVisibility(false)
+            , backfaceVisibility(true)
             , distributeOpacity(false)
         {
         }
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to