Title: [119044] branches/safari-536-branch/Source/WebKit2
- Revision
- 119044
- Author
- [email protected]
- Date
- 2012-05-30 20:55:01 -0700 (Wed, 30 May 2012)
Log Message
Merged r118559 -> <rdar://problem/11518154>
Modified Paths
Diff
Modified: branches/safari-536-branch/Source/WebKit2/ChangeLog (119043 => 119044)
--- branches/safari-536-branch/Source/WebKit2/ChangeLog 2012-05-31 03:53:23 UTC (rev 119043)
+++ branches/safari-536-branch/Source/WebKit2/ChangeLog 2012-05-31 03:55:01 UTC (rev 119044)
@@ -1,5 +1,23 @@
2012-05-30 Lucas Forschler <[email protected]>
+ Merge 118559
+
+ 2012-05-25 Beth Dakin <[email protected]>
+
+ https://bugs.webkit.org/show_bug.cgi?id=87529
+ Background tabs hosted in window server flash before painting
+ when they first become active
+
+ Reviewed by Anders Carlsson.
+
+ Initialize to LayerHostingModeInWindowServer if that is
+ available to avoid having to re-make the context and re-set
+ everything later on.
+ * UIProcess/WebPageProxy.cpp:
+ (WebKit::WebPageProxy::WebPageProxy):
+
+2012-05-30 Lucas Forschler <[email protected]>
+
Merge 118505
2012-05-24 Andreas Kling <[email protected]>
Modified: branches/safari-536-branch/Source/WebKit2/UIProcess/WebPageProxy.cpp (119043 => 119044)
--- branches/safari-536-branch/Source/WebKit2/UIProcess/WebPageProxy.cpp 2012-05-31 03:53:23 UTC (rev 119043)
+++ branches/safari-536-branch/Source/WebKit2/UIProcess/WebPageProxy.cpp 2012-05-31 03:55:01 UTC (rev 119044)
@@ -164,7 +164,11 @@
, m_pageScaleFactor(1)
, m_intrinsicDeviceScaleFactor(1)
, m_customDeviceScaleFactor(0)
+#if HAVE(LAYER_HOSTING_IN_WINDOW_SERVER)
+ , m_layerHostingMode(LayerHostingModeInWindowServer)
+#else
, m_layerHostingMode(LayerHostingModeDefault)
+#endif
, m_drawsBackground(true)
, m_drawsTransparentBackground(false)
, m_areMemoryCacheClientCallsEnabled(true)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes