| Index: Source/core/layout/svg/ReferenceFilterBuilder.cpp
|
| diff --git a/Source/core/layout/svg/ReferenceFilterBuilder.cpp b/Source/core/layout/svg/ReferenceFilterBuilder.cpp
|
| index cce6b03292f8b7b3877d42762438a0743a7f20b9..e2964aeee613cb747cbb2c1888f06e46f047bcee 100644
|
| --- a/Source/core/layout/svg/ReferenceFilterBuilder.cpp
|
| +++ b/Source/core/layout/svg/ReferenceFilterBuilder.cpp
|
| @@ -75,8 +75,8 @@ static bool getSVGElementColorSpace(SVGElement* svgElement, ColorSpace& cs)
|
| return false;
|
|
|
| const LayoutObject* layoutObject = svgElement->layoutObject();
|
| - const LayoutStyle* style = layoutObject ? layoutObject->style() : 0;
|
| - const SVGLayoutStyle* svgStyle = style ? &style->svgStyle() : 0;
|
| + const ComputedStyle* style = layoutObject ? layoutObject->style() : 0;
|
| + const SVGComputedStyle* svgStyle = style ? &style->svgStyle() : 0;
|
| EColorInterpolation eColorInterpolation = CI_AUTO;
|
| if (svgStyle) {
|
| // If a layout has been performed, then we can use the fast path to get this attribute
|
|
|