| Index: third_party/WebKit/Source/platform/geometry/LayoutRect.cpp
|
| diff --git a/third_party/WebKit/Source/platform/geometry/LayoutRect.cpp b/third_party/WebKit/Source/platform/geometry/LayoutRect.cpp
|
| index f0714d77767a302d34bb5c1ded4c13c6a80f0222..ed331fb62e627cd4f5de0a5b0e8c33df31aeebc4 100644
|
| --- a/third_party/WebKit/Source/platform/geometry/LayoutRect.cpp
|
| +++ b/third_party/WebKit/Source/platform/geometry/LayoutRect.cpp
|
| @@ -71,8 +71,8 @@ void LayoutRect::intersect(const LayoutRect& other)
|
|
|
| // Return a clean empty rectangle for non-intersecting cases.
|
| if (newLocation.x() >= newMaxPoint.x() || newLocation.y() >= newMaxPoint.y()) {
|
| - newLocation = LayoutPoint(0, 0);
|
| - newMaxPoint = LayoutPoint(0, 0);
|
| + newLocation = LayoutPoint();
|
| + newMaxPoint = LayoutPoint();
|
| }
|
|
|
| m_location = newLocation;
|
|
|