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

Unified Diff: third_party/WebKit/Source/core/layout/svg/LayoutSVGEllipse.cpp

Issue 2400783002: Reformat comments in core/layout/svg (Closed)
Patch Set: 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/layout/svg/LayoutSVGEllipse.cpp
diff --git a/third_party/WebKit/Source/core/layout/svg/LayoutSVGEllipse.cpp b/third_party/WebKit/Source/core/layout/svg/LayoutSVGEllipse.cpp
index f28e33bbd76ba3a9144325109db23e36ab80cdd1..d70f41ac70bc46a9d89c7dec79c43fc645eef972 100644
--- a/third_party/WebKit/Source/core/layout/svg/LayoutSVGEllipse.cpp
+++ b/third_party/WebKit/Source/core/layout/svg/LayoutSVGEllipse.cpp
@@ -48,7 +48,8 @@ void LayoutSVGEllipse::updateShapeFromElement() {
calculateRadiiAndCenter();
- // Spec: "A negative value is an error. A value of zero disables rendering of the element."
+ // Spec: "A negative value is an error. A value of zero disables rendering of
+ // the element."
if (m_radii.width() < 0 || m_radii.height() < 0)
return;

Powered by Google App Engine
This is Rietveld 408576698