| 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 b27da5d242e7e99f911423d8a761740450f71dfa..1072cfac439f5b23d289bd378cd37e8c59592772 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGLengthTearOff.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGLengthTearOff.cpp
|
| @@ -166,7 +166,9 @@ void SVGLengthTearOff::setValueInSpecifiedUnits(
|
| }
|
|
|
| String SVGLengthTearOff::valueAsString() {
|
| - // TODO(shanmuga.m@samsung.com): Not all <length> properties have 0 (with no unit) as the default (lacuna) value, Need to return default value instead of 0
|
| + // TODO(shanmuga.m@samsung.com): Not all <length> properties have 0 (with no
|
| + // unit) as the default (lacuna) value. We need to return default value
|
| + // instead of 0.
|
| return hasExposedLengthUnit() ? target()->valueAsString() : String::number(0);
|
| }
|
|
|
|
|