Title: [177611] trunk/Source/WebKit/mac
Revision
177611
Author
[email protected]
Date
2014-12-19 17:02:02 -0800 (Fri, 19 Dec 2014)

Log Message

Fix pink background on CoreAnimation plug-ins in WebKit1
https://bugs.webkit.org/show_bug.cgi?id=139845
rdar://problem/19313075

Reviewed by Tim Horton.

r154078 left in some debugging code that set a pink background on plug-in hosting
layers. Remove it.

* Plugins/Hosted/WebHostedNetscapePluginView.mm:
(-[WebHostedNetscapePluginView createPluginLayer]):

Modified Paths

Diff

Modified: trunk/Source/WebKit/mac/ChangeLog (177610 => 177611)


--- trunk/Source/WebKit/mac/ChangeLog	2014-12-20 00:57:55 UTC (rev 177610)
+++ trunk/Source/WebKit/mac/ChangeLog	2014-12-20 01:02:02 UTC (rev 177611)
@@ -1,3 +1,17 @@
+2014-12-19  Simon Fraser  <[email protected]>
+
+        Fix pink background on CoreAnimation plug-ins in WebKit1
+        https://bugs.webkit.org/show_bug.cgi?id=139845
+        rdar://problem/19313075
+
+        Reviewed by Tim Horton.
+        
+        r154078 left in some debugging code that set a pink background on plug-in hosting
+        layers. Remove it.
+
+        * Plugins/Hosted/WebHostedNetscapePluginView.mm:
+        (-[WebHostedNetscapePluginView createPluginLayer]):
+
 2014-12-19  Andreas Kling  <[email protected]>
 
         Ref-ify TextIterator API.

Modified: trunk/Source/WebKit/mac/Plugins/Hosted/WebHostedNetscapePluginView.mm (177610 => 177611)


--- trunk/Source/WebKit/mac/Plugins/Hosted/WebHostedNetscapePluginView.mm	2014-12-20 00:57:55 UTC (rev 177610)
+++ trunk/Source/WebKit/mac/Plugins/Hosted/WebHostedNetscapePluginView.mm	2014-12-20 01:02:02 UTC (rev 177611)
@@ -163,8 +163,6 @@
         _pluginLayer.get().bounds = realPluginLayer.get().bounds;
         _pluginLayer.get().geometryFlipped = YES;
 
-        _pluginLayer.get().backgroundColor = adoptCF(CGColorCreateGenericRGB(1, 0, 1, 1)).get();
-
         realPluginLayer.get().autoresizingMask = kCALayerWidthSizable | kCALayerHeightSizable;
         [_pluginLayer.get() addSublayer:realPluginLayer.get()];
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to