Changeset 177611 in webkit


Ignore:
Timestamp:
Dec 19, 2014 5:02:02 PM (9 years ago)
Author:
Simon Fraser
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]):

Location:
trunk/Source/WebKit/mac
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/mac/ChangeLog

    r177588 r177611  
     12014-12-19  Simon Fraser  <simon.fraser@apple.com>
     2
     3        Fix pink background on CoreAnimation plug-ins in WebKit1
     4        https://bugs.webkit.org/show_bug.cgi?id=139845
     5        rdar://problem/19313075
     6
     7        Reviewed by Tim Horton.
     8       
     9        r154078 left in some debugging code that set a pink background on plug-in hosting
     10        layers. Remove it.
     11
     12        * Plugins/Hosted/WebHostedNetscapePluginView.mm:
     13        (-[WebHostedNetscapePluginView createPluginLayer]):
     14
    1152014-12-19  Andreas Kling  <akling@apple.com>
    216
  • trunk/Source/WebKit/mac/Plugins/Hosted/WebHostedNetscapePluginView.mm

    r174875 r177611  
    164164        _pluginLayer.get().geometryFlipped = YES;
    165165
    166         _pluginLayer.get().backgroundColor = adoptCF(CGColorCreateGenericRGB(1, 0, 1, 1)).get();
    167 
    168166        realPluginLayer.get().autoresizingMask = kCALayerWidthSizable | kCALayerHeightSizable;
    169167        [_pluginLayer.get() addSublayer:realPluginLayer.get()];
Note: See TracChangeset for help on using the changeset viewer.