| Index: Source/core/svg/SVGStringList.cpp
|
| diff --git a/Source/core/svg/SVGStringList.cpp b/Source/core/svg/SVGStringList.cpp
|
| index 7e37c6641c67b55e3fb738f20334b23fa939b098..216cd2b4fa2d4d5abaa16c895a15b63b12699564 100644
|
| --- a/Source/core/svg/SVGStringList.cpp
|
| +++ b/Source/core/svg/SVGStringList.cpp
|
| @@ -92,7 +92,7 @@ void SVGStringList::parseInternal(const CharType*& ptr, const CharType* end)
|
|
|
| while (ptr < end) {
|
| const CharType* start = ptr;
|
| - while (ptr < end && *ptr != delimiter && !isSVGSpace(*ptr))
|
| + while (ptr < end && *ptr != delimiter && !isHTMLSpace<CharType>(*ptr))
|
| ptr++;
|
| if (ptr == start)
|
| break;
|
|
|