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

Unified Diff: third_party/WebKit/Source/core/svg/SVGGeometryElement.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/SVGGeometryElement.cpp
diff --git a/third_party/WebKit/Source/core/svg/SVGGeometryElement.cpp b/third_party/WebKit/Source/core/svg/SVGGeometryElement.cpp
index 7e9fe8d886c0bee827dc3320d0165b55e66f6b50..b407cd3430fa89e4aca61633346ad55de39867f7 100644
--- a/third_party/WebKit/Source/core/svg/SVGGeometryElement.cpp
+++ b/third_party/WebKit/Source/core/svg/SVGGeometryElement.cpp
@@ -47,7 +47,8 @@ SVGGeometryElement::SVGGeometryElement(const QualifiedName& tagName,
bool SVGGeometryElement::isPointInFill(SVGPointTearOff* point) const {
document().updateStyleAndLayoutIgnorePendingStylesheets();
- // FIXME: Eventually we should support isPointInFill for display:none elements.
+ // FIXME: Eventually we should support isPointInFill for display:none
+ // elements.
if (!layoutObject() || !layoutObject()->isSVGShape())
return false;
@@ -63,7 +64,8 @@ bool SVGGeometryElement::isPointInFill(SVGPointTearOff* point) const {
bool SVGGeometryElement::isPointInStroke(SVGPointTearOff* point) const {
document().updateStyleAndLayoutIgnorePendingStylesheets();
- // FIXME: Eventually we should support isPointInStroke for display:none elements.
+ // FIXME: Eventually we should support isPointInStroke for display:none
+ // elements.
if (!layoutObject() || !layoutObject()->isSVGShape())
return false;
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGGElement.cpp ('k') | third_party/WebKit/Source/core/svg/SVGGraphicsElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698