| 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..d2aa191ff746d4e722434275ff28628fc32997f2 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGLengthTearOff.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGLengthTearOff.cpp
|
| @@ -60,7 +60,7 @@ inline bool canResolveRelativeUnits(const SVGElement* contextElement) {
|
| }
|
|
|
| inline CSSPrimitiveValue::UnitType toCSSUnitType(unsigned short type) {
|
| - ASSERT(isValidLengthUnit(type));
|
| + DCHECK(isValidLengthUnit(type));
|
| if (type == SVGLengthTearOff::kSvgLengthtypeNumber)
|
| return CSSPrimitiveValue::UnitType::UserUnits;
|
| return static_cast<CSSPrimitiveValue::UnitType>(type);
|
|
|