Index: Source/core/svg/SVGStopElement.cpp |
diff --git a/Source/core/svg/SVGStopElement.cpp b/Source/core/svg/SVGStopElement.cpp |
index 96c7814cd243073abf1d149812b65296f5e8bc34..397ea20db096787f299b5f8efc2a470eeb6c53de 100644 |
--- a/Source/core/svg/SVGStopElement.cpp |
+++ b/Source/core/svg/SVGStopElement.cpp |
@@ -114,7 +114,7 @@ Color SVGStopElement::stopColorIncludingOpacity() const |
// which the renderer or style is null. This entire class is scheduled for removal (Bug WK 86941) |
// and we will tolerate this null check until then. |
if (!style || !style->svgStyle()) |
- return Color(Color::transparent, true); // Transparent black. |
+ return Color(Color::transparent); // Transparent black. |
const SVGRenderStyle* svgStyle = style->svgStyle(); |
return colorWithOverrideAlpha(svgStyle->stopColor().rgb(), svgStyle->stopOpacity()); |