| Index: Source/core/svg/SVGPoint.cpp
|
| diff --git a/Source/core/svg/SVGPoint.cpp b/Source/core/svg/SVGPoint.cpp
|
| index b2581b824ea8771d7270ecab8c5132e2ce05aa5e..283667a1dd78cf4b023bcc0cc16e45b4f6da2f08 100644
|
| --- a/Source/core/svg/SVGPoint.cpp
|
| +++ b/Source/core/svg/SVGPoint.cpp
|
| @@ -74,7 +74,7 @@ void SVGPoint::parse(const CharType*& ptr, const CharType* end, ExceptionState&
|
|
|
| float x = 0.0f;
|
| float y = 0.0f;
|
| - bool valid = parseNumber(ptr, end, x) && parseNumber(ptr, end, y, false);
|
| + bool valid = parseNumber(ptr, end, x) && parseNumber(ptr, end, y, DisallowWhitespace);
|
|
|
| if (!valid) {
|
| exceptionState.throwDOMException(SyntaxError, "Problem parsing point \"" + String(start, end - start) + "\"");
|
|
|