| Index: Source/core/rendering/style/SVGRenderStyle.h
|
| diff --git a/Source/core/rendering/style/SVGRenderStyle.h b/Source/core/rendering/style/SVGRenderStyle.h
|
| index 5d0c96981bde17bbee580ce883e308dbfbcfda09..e7347c7c0288331ec879072e36d6e8e32936a071 100644
|
| --- a/Source/core/rendering/style/SVGRenderStyle.h
|
| +++ b/Source/core/rendering/style/SVGRenderStyle.h
|
| @@ -102,13 +102,6 @@ public:
|
| return length.release();
|
| }
|
|
|
| - static PassRefPtr<SVGLength> initialKerning()
|
| - {
|
| - RefPtr<SVGLength> length = SVGLength::create();
|
| - length->newValueSpecifiedUnits(LengthTypeNumber, 0);
|
| - return length.release();
|
| - }
|
| -
|
| static PassRefPtr<SVGLength> initialStrokeDashOffset()
|
| {
|
| RefPtr<SVGLength> length = SVGLength::create();
|
| @@ -220,12 +213,6 @@ public:
|
| stroke.access()->dashOffset = obj;
|
| }
|
|
|
| - void setKerning(PassRefPtr<SVGLength> obj)
|
| - {
|
| - if (!(text->kerning == obj))
|
| - text.access()->kerning = obj;
|
| - }
|
| -
|
| void setStopOpacity(float obj)
|
| {
|
| if (!(stops->opacity == obj))
|
| @@ -330,7 +317,6 @@ public:
|
| float strokeMiterLimit() const { return stroke->miterLimit; }
|
| PassRefPtr<SVGLength> strokeWidth() const { return stroke->width; }
|
| PassRefPtr<SVGLength> strokeDashOffset() const { return stroke->dashOffset; }
|
| - PassRefPtr<SVGLength> kerning() const { return text->kerning; }
|
| float stopOpacity() const { return stops->opacity; }
|
| const Color& stopColor() const { return stops->color; }
|
| float floodOpacity() const { return misc->floodOpacity; }
|
| @@ -427,7 +413,6 @@ protected:
|
| // inherited attributes
|
| DataRef<StyleFillData> fill;
|
| DataRef<StyleStrokeData> stroke;
|
| - DataRef<StyleTextData> text;
|
| DataRef<StyleInheritedResourceData> inheritedResources;
|
|
|
| // non-inherited attributes
|
|
|