Index: third_party/WebKit/Source/platform/geometry/FloatPolygon.cpp |
diff --git a/third_party/WebKit/Source/platform/geometry/FloatPolygon.cpp b/third_party/WebKit/Source/platform/geometry/FloatPolygon.cpp |
index 1d5c2febf8f06d6b563ae2a2cf1b6ac09b9c98b5..5f3b00b931afc50dccca09cfa635fbd564f6a583 100644 |
--- a/third_party/WebKit/Source/platform/geometry/FloatPolygon.cpp |
+++ b/third_party/WebKit/Source/platform/geometry/FloatPolygon.cpp |
@@ -70,8 +70,9 @@ static unsigned findNextEdgeVertexIndex(const FloatPolygon& polygon, |
unsigned nVertices = polygon.numberOfVertices(); |
unsigned vertexIndex2 = nextVertexIndex(vertexIndex1, nVertices, clockwise); |
- while (vertexIndex2 && areCoincidentPoints(polygon.vertexAt(vertexIndex1), |
- polygon.vertexAt(vertexIndex2))) |
+ while (vertexIndex2 && |
+ areCoincidentPoints(polygon.vertexAt(vertexIndex1), |
+ polygon.vertexAt(vertexIndex2))) |
vertexIndex2 = nextVertexIndex(vertexIndex2, nVertices, clockwise); |
while (vertexIndex2) { |