| Index: third_party/WebKit/Source/core/events/MouseEvent.cpp
|
| diff --git a/third_party/WebKit/Source/core/events/MouseEvent.cpp b/third_party/WebKit/Source/core/events/MouseEvent.cpp
|
| index 421e8d50d0362b4f19a70b1bf6506d9bc579ecae..a14e3f68ac90d41eebc8ab19200c5bb3a7154f71 100644
|
| --- a/third_party/WebKit/Source/core/events/MouseEvent.cpp
|
| +++ b/third_party/WebKit/Source/core/events/MouseEvent.cpp
|
| @@ -72,8 +72,9 @@ const LayoutObject* findTargetLayoutObject(Node*& targetNode) {
|
| layoutObject = layoutObject->parent();
|
| // Update the target node to point to the SVG root.
|
| targetNode = layoutObject->node();
|
| - DCHECK(!targetNode || (targetNode->isSVGElement() &&
|
| - toSVGElement(*targetNode).isOutermostSVGSVGElement()));
|
| + DCHECK(!targetNode ||
|
| + (targetNode->isSVGElement() &&
|
| + toSVGElement(*targetNode).isOutermostSVGSVGElement()));
|
| return layoutObject;
|
| }
|
|
|
|
|