Index: Source/core/svg/SVGLengthList.cpp |
diff --git a/Source/core/svg/SVGLengthList.cpp b/Source/core/svg/SVGLengthList.cpp |
index 767dd00b2f83a89fd113c0c25a06b80543ce3931..49721564ec330542fefa7c32d2e12b51cf94a007 100644 |
--- a/Source/core/svg/SVGLengthList.cpp |
+++ b/Source/core/svg/SVGLengthList.cpp |
@@ -83,7 +83,7 @@ void SVGLengthList::parseInternal(const CharType*& ptr, const CharType* end, Exc |
clear(); |
while (ptr < end) { |
const CharType* start = ptr; |
- while (ptr < end && *ptr != ',' && !isSVGSpace(*ptr)) |
+ while (ptr < end && *ptr != ',' && !isHTMLSpace<CharType>(*ptr)) |
ptr++; |
if (ptr == start) |
break; |