| Index: third_party/WebKit/Source/core/svg/SVGLengthTearOff.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGLengthTearOff.cpp b/third_party/WebKit/Source/core/svg/SVGLengthTearOff.cpp
|
| index 1072cfac439f5b23d289bd378cd37e8c59592772..f251e85337265801b6035b9d2464f8ca209ff899 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGLengthTearOff.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGLengthTearOff.cpp
|
| @@ -201,8 +201,9 @@ void SVGLengthTearOff::newValueSpecifiedUnits(unsigned short unitType,
|
| }
|
| if (!isValidLengthUnit(unitType)) {
|
| exceptionState.throwDOMException(
|
| - NotSupportedError, "Cannot set value with unknown or invalid units (" +
|
| - String::number(unitType) + ").");
|
| + NotSupportedError,
|
| + "Cannot set value with unknown or invalid units (" +
|
| + String::number(unitType) + ").");
|
| return;
|
| }
|
| target()->newValueSpecifiedUnits(toCSSUnitType(unitType),
|
| @@ -218,8 +219,9 @@ void SVGLengthTearOff::convertToSpecifiedUnits(unsigned short unitType,
|
| }
|
| if (!isValidLengthUnit(unitType)) {
|
| exceptionState.throwDOMException(
|
| - NotSupportedError, "Cannot convert to unknown or invalid units (" +
|
| - String::number(unitType) + ").");
|
| + NotSupportedError,
|
| + "Cannot convert to unknown or invalid units (" +
|
| + String::number(unitType) + ").");
|
| return;
|
| }
|
| if ((target()->isRelative() ||
|
|
|