Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1506)

Unified Diff: Source/core/layout/style/LayoutStyle.h

Issue 980233002: [svg2] Make 'cx', 'cy' and 'r' presentation attributes (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/frame/UseCounter.cpp ('k') | Source/core/layout/style/SVGLayoutStyle.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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); }
« no previous file with comments | « Source/core/frame/UseCounter.cpp ('k') | Source/core/layout/style/SVGLayoutStyle.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698