Title: [127816] trunk/Source/WebKit2
Revision
127816
Author
[email protected]
Date
2012-09-06 21:14:57 -0700 (Thu, 06 Sep 2012)

Log Message

Move RenderView::setFixedPositionedObjectsNeedLayout to FrameView
https://bugs.webkit.org/show_bug.cgi?id=96017

Unreviewed Qt-WK2 buildfix after r127783.

* WebProcess/WebPage/CoordinatedGraphics/LayerTreeCoordinator.cpp:
(WebKit::LayerTreeCoordinator::syncFixedLayers):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (127815 => 127816)


--- trunk/Source/WebKit2/ChangeLog	2012-09-07 03:35:36 UTC (rev 127815)
+++ trunk/Source/WebKit2/ChangeLog	2012-09-07 04:14:57 UTC (rev 127816)
@@ -1,3 +1,13 @@
+2012-09-06  Csaba Osztrogonác  <[email protected]>
+
+        Move RenderView::setFixedPositionedObjectsNeedLayout to FrameView
+        https://bugs.webkit.org/show_bug.cgi?id=96017
+
+        Unreviewed Qt-WK2 buildfix after r127783.
+
+        * WebProcess/WebPage/CoordinatedGraphics/LayerTreeCoordinator.cpp:
+        (WebKit::LayerTreeCoordinator::syncFixedLayers):
+
 2012-09-05  Alexey Proskuryakov  <[email protected]>
 
         [WK2] Annotate multi-process FIXMEs with bug numbers

Modified: trunk/Source/WebKit2/WebProcess/WebPage/CoordinatedGraphics/LayerTreeCoordinator.cpp (127815 => 127816)


--- trunk/Source/WebKit2/WebProcess/WebPage/CoordinatedGraphics/LayerTreeCoordinator.cpp	2012-09-07 03:35:36 UTC (rev 127815)
+++ trunk/Source/WebKit2/WebProcess/WebPage/CoordinatedGraphics/LayerTreeCoordinator.cpp	2012-09-07 04:14:57 UTC (rev 127816)
@@ -367,7 +367,7 @@
     if (!m_webPage->corePage()->settings() || !m_webPage->corePage()->settings()->acceleratedCompositingForFixedPositionEnabled())
         return;
 
-    if (!m_webPage->mainFrame()->view()->hasFixedObjects())
+    if (!m_webPage->mainFrame()->view()->hasViewportConstrainedObjects())
         return;
 
     RenderLayer* rootRenderLayer = m_webPage->mainFrame()->contentRenderer()->compositor()->rootRenderLayer();
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to