| Index: third_party/WebKit/Source/core/svg/SVGCircleElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGCircleElement.cpp b/third_party/WebKit/Source/core/svg/SVGCircleElement.cpp
|
| index 519b82ea9fbd1ae0c0f8c563e80f4e9edc30dba4..95da35799e66aad328a8ad69922ca719045c82ba 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGCircleElement.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGCircleElement.cpp
|
| @@ -28,9 +28,9 @@ namespace blink {
|
|
|
| inline SVGCircleElement::SVGCircleElement(Document& document)
|
| : SVGGeometryElement(SVGNames::circleTag, document)
|
| - , m_cx(SVGAnimatedLength::create(this, SVGNames::cxAttr, SVGLength::create(SVGLengthMode::Width), AllowNegativeLengths))
|
| - , m_cy(SVGAnimatedLength::create(this, SVGNames::cyAttr, SVGLength::create(SVGLengthMode::Height), AllowNegativeLengths))
|
| - , m_r(SVGAnimatedLength::create(this, SVGNames::rAttr, SVGLength::create(SVGLengthMode::Other), ForbidNegativeLengths))
|
| + , m_cx(SVGAnimatedLength::create(this, SVGNames::cxAttr, SVGLength::create(SVGLengthMode::Width)))
|
| + , m_cy(SVGAnimatedLength::create(this, SVGNames::cyAttr, SVGLength::create(SVGLengthMode::Height)))
|
| + , m_r(SVGAnimatedLength::create(this, SVGNames::rAttr, SVGLength::create(SVGLengthMode::Other)))
|
| {
|
| addToPropertyMap(m_cx);
|
| addToPropertyMap(m_cy);
|
|
|