| Index: third_party/WebKit/Source/core/svg/SVGSVGElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGSVGElement.cpp b/third_party/WebKit/Source/core/svg/SVGSVGElement.cpp
|
| index a08056bfca98312c020b18fb64f8a2c29443c2ca..0ac30e3c637c6b3044467efba07b6bba4da63601 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGSVGElement.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGSVGElement.cpp
|
| @@ -329,7 +329,8 @@ bool SVGSVGElement::checkIntersectionOrEnclosure(
|
| CheckIntersectionOrEnclosure mode) const {
|
| LayoutObject* layoutObject = element.layoutObject();
|
| ASSERT(!layoutObject || layoutObject->style());
|
| - if (!layoutObject || layoutObject->style()->pointerEvents() == PE_NONE)
|
| + if (!layoutObject ||
|
| + layoutObject->style()->pointerEvents() == EPointerEvents::PE_NONE)
|
| return false;
|
|
|
| if (!isIntersectionOrEnclosureTarget(layoutObject))
|
|
|