Index: third_party/WebKit/Source/core/svg/SVGPathParser.cpp |
diff --git a/third_party/WebKit/Source/core/svg/SVGPathParser.cpp b/third_party/WebKit/Source/core/svg/SVGPathParser.cpp |
index 93dd5b8f0e6e5c61e1e6baf87da7fda6ca8a0ebb..989ba011f263c4144af57e8680073f292c9030ab 100644 |
--- a/third_party/WebKit/Source/core/svg/SVGPathParser.cpp |
+++ b/third_party/WebKit/Source/core/svg/SVGPathParser.cpp |
@@ -50,12 +50,6 @@ bool SVGPathParser::parsePath() |
return false; |
m_consumer->emitSegment(segment); |
- |
- if (!m_consumer->continueConsuming()) |
- return true; |
- |
- if (m_source->hasMoreData()) |
- m_consumer->incrementPathSegmentCount(); |
} |
return true; |
} |
@@ -314,12 +308,6 @@ bool SVGPathParser::parseAndNormalizePath() |
return false; |
normalizer.emitSegment(segment); |
- |
- if (!m_consumer->continueConsuming()) |
- return true; |
- |
- if (m_source->hasMoreData()) |
- m_consumer->incrementPathSegmentCount(); |
} |
return true; |
} |