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

Unified Diff: third_party/WebKit/Source/core/svg/SVGRadialGradientElement.cpp

Issue 2390773004: reflow comments in core/svg/ (Closed)
Patch Set: comments (heh!) Created 4 years, 2 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
Index: third_party/WebKit/Source/core/svg/SVGRadialGradientElement.cpp
diff --git a/third_party/WebKit/Source/core/svg/SVGRadialGradientElement.cpp b/third_party/WebKit/Source/core/svg/SVGRadialGradientElement.cpp
index 625adff852e7675a53b6240a33b90c23bc02e9b1..145c7993d7b397cbc08830b1ea24d0e26042712f 100644
--- a/third_party/WebKit/Source/core/svg/SVGRadialGradientElement.cpp
+++ b/third_party/WebKit/Source/core/svg/SVGRadialGradientElement.cpp
@@ -48,12 +48,14 @@ inline SVGRadialGradientElement::SVGRadialGradientElement(Document& document)
m_fr(SVGAnimatedLength::create(this,
SVGNames::frAttr,
SVGLength::create(SVGLengthMode::Other))) {
- // Spec: If the cx/cy/r attribute is not specified, the effect is as if a value of "50%" were specified.
+ // Spec: If the cx/cy/r attribute is not specified, the effect is as if a
+ // value of "50%" were specified.
m_cx->setDefaultValueAsString("50%");
m_cy->setDefaultValueAsString("50%");
m_r->setDefaultValueAsString("50%");
- // SVG2-Draft Spec: If the fr attributed is not specified, the effect is as if a value of "0%" were specified.
+ // SVG2-Draft Spec: If the fr attributed is not specified, the effect is as if
+ // a value of "0%" were specified.
m_fr->setDefaultValueAsString("0%");
addToPropertyMap(m_cx);
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGPreserveAspectRatio.cpp ('k') | third_party/WebKit/Source/core/svg/SVGRect.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698