| Index: Source/core/rendering/style/RenderStyle.h
|
| diff --git a/Source/core/rendering/style/RenderStyle.h b/Source/core/rendering/style/RenderStyle.h
|
| index 2eed7f2f5e125785efa78987a040a37bb5e92978..89b806ac09e6636504af90d48b4f35a148cc3ff7 100644
|
| --- a/Source/core/rendering/style/RenderStyle.h
|
| +++ b/Source/core/rendering/style/RenderStyle.h
|
| @@ -1408,13 +1408,11 @@ public:
|
|
|
| const SVGPaint::SVGPaintType& fillPaintType() const { return svgStyle()->fillPaintType(); }
|
| Color fillPaintColor() const { return svgStyle()->fillPaintColor(); }
|
| - void setFillPaintColor(const Color& c) { accessSVGStyle()->setFillPaint(SVGPaint::SVG_PAINTTYPE_RGBCOLOR, c, ""); }
|
| float fillOpacity() const { return svgStyle()->fillOpacity(); }
|
| void setFillOpacity(float f) { accessSVGStyle()->setFillOpacity(f); }
|
|
|
| const SVGPaint::SVGPaintType& strokePaintType() const { return svgStyle()->strokePaintType(); }
|
| Color strokePaintColor() const { return svgStyle()->strokePaintColor(); }
|
| - void setStrokePaintColor(const Color& c) { accessSVGStyle()->setStrokePaint(SVGPaint::SVG_PAINTTYPE_RGBCOLOR, c, ""); }
|
| float strokeOpacity() const { return svgStyle()->strokeOpacity(); }
|
| void setStrokeOpacity(float f) { accessSVGStyle()->setStrokeOpacity(f); }
|
| SVGLength* strokeWidth() const { return svgStyle()->strokeWidth(); }
|
|
|