| Index: Source/core/layout/style/LayoutStyle.h
|
| diff --git a/Source/core/layout/style/LayoutStyle.h b/Source/core/layout/style/LayoutStyle.h
|
| index 30e56e6c5e97b6310875d2c232837cd171aad8e4..0c2ef2cd51e7ca244f9f3b36105df4e25ef6a311 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); }
|
|
|
|
|