Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(680)

Unified Diff: Source/core/svg/SVGPointList.cpp

Issue 153883003: [SVG] SVGAnimatedTransform{,List} migration to new SVG property impl. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/svg/SVGPointList.cpp
diff --git a/Source/core/svg/SVGPointList.cpp b/Source/core/svg/SVGPointList.cpp
index e0910d612e6b05e9ffb4e2c39849fecd1fb6296b..3b1e3e29ce0d691130dd59ec6d6261d9a8ea4c5e 100644
--- a/Source/core/svg/SVGPointList.cpp
+++ b/Source/core/svg/SVGPointList.cpp
@@ -105,7 +105,6 @@ bool SVGPointList::parse(const CharType*& ptr, const CharType* end)
}
// check end of list
- skipOptionalSVGSpaces(ptr, end);
haraken 2014/02/11 17:00:21 Why did you remove this?
kouhei (in TOK) 2014/02/12 01:57:49 This was redundant. There is a call already in lin
if (ptr >= end)
return true;
}

Powered by Google App Engine
This is Rietveld 408576698