| 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;
|
|
|
|
|