| Index: third_party/WebKit/Source/core/layout/svg/LayoutSVGImage.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/svg/LayoutSVGImage.cpp b/third_party/WebKit/Source/core/layout/svg/LayoutSVGImage.cpp
|
| index 91867b267e3846e7871142f9b3e0af1f11131e9a..e0499c8cf5ec55387e2cd91af9534e6d6778e6d8 100644
|
| --- a/third_party/WebKit/Source/core/layout/svg/LayoutSVGImage.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/svg/LayoutSVGImage.cpp
|
| @@ -120,7 +120,7 @@ bool LayoutSVGImage::nodeAtFloatPoint(HitTestResult& result, const FloatPoint& p
|
| return false;
|
|
|
| PointerEventsHitRules hitRules(PointerEventsHitRules::SVG_IMAGE_HITTESTING, result.hitTestRequest(), style()->pointerEvents());
|
| - bool isVisible = (style()->visibility() == VISIBLE);
|
| + bool isVisible = (style()->visibility() == EVisibility::Visible);
|
| if (isVisible || !hitRules.requireVisible) {
|
| FloatPoint localPoint;
|
| if (!SVGLayoutSupport::transformToUserSpaceAndCheckClipping(this, localToSVGParentTransform(), pointInParent, localPoint))
|
|
|