| Index: third_party/WebKit/Source/core/svg/SVGAngleTearOff.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGAngleTearOff.cpp b/third_party/WebKit/Source/core/svg/SVGAngleTearOff.cpp
|
| index 65678396cd5e66eab158d544c61f10b22a6ec32f..f069b8166d9c4c9328c978caf1181d3e4cb1a736 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGAngleTearOff.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGAngleTearOff.cpp
|
| @@ -76,8 +76,9 @@ void SVGAngleTearOff::newValueSpecifiedUnits(unsigned short unitType,
|
| if (unitType == SVGAngle::kSvgAngletypeUnknown ||
|
| unitType > SVGAngle::kSvgAngletypeGrad) {
|
| 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(
|
| @@ -94,8 +95,9 @@ void SVGAngleTearOff::convertToSpecifiedUnits(unsigned short unitType,
|
| if (unitType == SVGAngle::kSvgAngletypeUnknown ||
|
| unitType > SVGAngle::kSvgAngletypeGrad) {
|
| 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()->unitType() == SVGAngle::kSvgAngletypeUnknown) {
|
|
|