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

Unified Diff: third_party/WebKit/Source/core/svg/SVGLinearGradientElement.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/SVGLinearGradientElement.cpp
diff --git a/third_party/WebKit/Source/core/svg/SVGLinearGradientElement.cpp b/third_party/WebKit/Source/core/svg/SVGLinearGradientElement.cpp
index 704416a9c7be9ac4d6cb324f766dfe6260a5ba40..3460fc6bb3808283b07f7c2f585673cacf448371 100644
--- a/third_party/WebKit/Source/core/svg/SVGLinearGradientElement.cpp
+++ b/third_party/WebKit/Source/core/svg/SVGLinearGradientElement.cpp
@@ -44,12 +44,14 @@ inline SVGLinearGradientElement::SVGLinearGradientElement(Document& document)
SVGAnimatedLength::create(this,
SVGNames::y2Attr,
SVGLength::create(SVGLengthMode::Height))) {
- // Spec: If the x1|y1|y2 attribute is not specified, the effect is as if a value of "0%" were specified.
+ // Spec: If the x1|y1|y2 attribute is not specified, the effect is as if a
+ // value of "0%" were specified.
m_x1->setDefaultValueAsString("0%");
m_y1->setDefaultValueAsString("0%");
m_y2->setDefaultValueAsString("0%");
- // Spec: If the x2 attribute is not specified, the effect is as if a value of "100%" were specified.
+ // Spec: If the x2 attribute is not specified, the effect is as if a value of
+ // "100%" were specified.
m_x2->setDefaultValueAsString("100%");
addToPropertyMap(m_x1);
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGLengthTearOff.cpp ('k') | third_party/WebKit/Source/core/svg/SVGMPathElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698