| Index: Source/core/rendering/svg/RenderSVGImage.cpp
 | 
| diff --git a/Source/core/rendering/svg/RenderSVGImage.cpp b/Source/core/rendering/svg/RenderSVGImage.cpp
 | 
| index 0ba6d8b7f3f249216aeb86b973d67554e03a78f4..5edf820bc06b18b549352c675c29f26704b85a75 100644
 | 
| --- a/Source/core/rendering/svg/RenderSVGImage.cpp
 | 
| +++ b/Source/core/rendering/svg/RenderSVGImage.cpp
 | 
| @@ -169,7 +169,7 @@ void RenderSVGImage::paintForeground(PaintInfo& paintInfo)
 | 
|      if (style()->svgStyle()->bufferedRendering() != BR_STATIC)
 | 
|          useLowQualityScaling = ImageQualityController::imageQualityController()->shouldPaintAtLowQuality(paintInfo.context, this, image.get(), image.get(), LayoutSize(destRect.size()));
 | 
|  
 | 
| -    paintInfo.context->drawImage(image.get(), style()->colorSpace(), destRect, srcRect, CompositeSourceOver, DoNotRespectImageOrientation, useLowQualityScaling);
 | 
| +    paintInfo.context->drawImage(image.get(), destRect, srcRect, CompositeSourceOver, DoNotRespectImageOrientation, useLowQualityScaling);
 | 
|  }
 | 
|  
 | 
|  void RenderSVGImage::invalidateBufferedForeground()
 | 
| 
 |