| Index: Source/core/platform/graphics/filters/SourceAlpha.cpp
 | 
| diff --git a/Source/core/platform/graphics/filters/SourceAlpha.cpp b/Source/core/platform/graphics/filters/SourceAlpha.cpp
 | 
| index cbe3a278fd1ab935d4d4b75e2d2444036676455d..74662e9917955588ab026e951faee43dd7a2d1f5 100644
 | 
| --- a/Source/core/platform/graphics/filters/SourceAlpha.cpp
 | 
| +++ b/Source/core/platform/graphics/filters/SourceAlpha.cpp
 | 
| @@ -62,8 +62,8 @@ void SourceAlpha::applySoftware()
 | 
|  
 | 
|      FloatRect imageRect(FloatPoint(), absolutePaintRect().size());
 | 
|      GraphicsContext* filterContext = resultImage->context();
 | 
| -    filterContext->fillRect(imageRect, Color::black, ColorSpaceDeviceRGB);
 | 
| -    filterContext->drawImageBuffer(filter->sourceImage(), ColorSpaceDeviceRGB, IntPoint(), CompositeDestinationIn);
 | 
| +    filterContext->fillRect(imageRect, Color::black);
 | 
| +    filterContext->drawImageBuffer(filter->sourceImage(), IntPoint(), CompositeDestinationIn);
 | 
|  }
 | 
|  
 | 
|  TextStream& SourceAlpha::externalRepresentation(TextStream& ts, int indent) const
 | 
| 
 |