| Index: Source/core/layout/style/LayoutStyle.h
|
| diff --git a/Source/core/layout/style/LayoutStyle.h b/Source/core/layout/style/LayoutStyle.h
|
| index 45b533320a912b9740d4c415a010521e89686904..59fdc6c7ac8d2992880c04b6d294f3a9097fa034 100644
|
| --- a/Source/core/layout/style/LayoutStyle.h
|
| +++ b/Source/core/layout/style/LayoutStyle.h
|
| @@ -1376,8 +1376,11 @@ public:
|
| float strokeMiterLimit() const { return svgStyle().strokeMiterLimit(); }
|
| void setStrokeMiterLimit(float f) { accessSVGStyle().setStrokeMiterLimit(f); }
|
|
|
| + void setCx(Length cx) { accessSVGStyle().setCx(cx); }
|
| + void setCy(Length cy) { accessSVGStyle().setCy(cy); }
|
| void setX(Length x) { accessSVGStyle().setX(x); }
|
| void setY(Length y) { accessSVGStyle().setY(y); }
|
| + void setR(Length r) { accessSVGStyle().setR(r); }
|
| void setRx(Length rx) { accessSVGStyle().setRx(rx); }
|
| void setRy(Length ry) { accessSVGStyle().setRy(ry); }
|
|
|
|
|