| Index: Source/core/svg/SVGStopElement.cpp
|
| diff --git a/Source/core/svg/SVGStopElement.cpp b/Source/core/svg/SVGStopElement.cpp
|
| index 40fc9de639961b92f758816b0ef7cbafbf0ee5f5..b3307cdc4ae0e269c8758a6c51183e0a09e0c0fc 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); // Transparent black.
|
| + return Color(Color::transparent, true); // Transparent black.
|
|
|
| const SVGRenderStyle* svgStyle = style->svgStyle();
|
| return colorWithOverrideAlpha(svgStyle->stopColor().rgb(), svgStyle->stopOpacity());
|
|
|