| Index: third_party/WebKit/Source/core/svg/SVGFilterElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGFilterElement.cpp b/third_party/WebKit/Source/core/svg/SVGFilterElement.cpp
|
| index 4a8e9e8549bfc31fb559ee5160558efc3b9eda39..0e0fdd522d75b84720ef2a85ee98409544ff83f4 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGFilterElement.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGFilterElement.cpp
|
| @@ -37,8 +37,8 @@ inline SVGFilterElement::SVGFilterElement(Document& document)
|
| , m_y(SVGAnimatedLength::create(this, SVGNames::yAttr, SVGLength::create(SVGLengthMode::Height)))
|
| , m_width(SVGAnimatedLength::create(this, SVGNames::widthAttr, SVGLength::create(SVGLengthMode::Width)))
|
| , m_height(SVGAnimatedLength::create(this, SVGNames::heightAttr, SVGLength::create(SVGLengthMode::Height)))
|
| - , m_filterUnits(SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType>::create(this, SVGNames::filterUnitsAttr, SVGUnitTypes::SVG_UNIT_TYPE_OBJECTBOUNDINGBOX))
|
| - , m_primitiveUnits(SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType>::create(this, SVGNames::primitiveUnitsAttr, SVGUnitTypes::SVG_UNIT_TYPE_USERSPACEONUSE))
|
| + , m_filterUnits(SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType>::create(this, SVGNames::filterUnitsAttr, SVGUnitTypes::kSvgUnitTypeObjectboundingbox))
|
| + , m_primitiveUnits(SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType>::create(this, SVGNames::primitiveUnitsAttr, SVGUnitTypes::kSvgUnitTypeUserspaceonuse))
|
| {
|
| // Spec: If the x/y attribute is not specified, the effect is as if a value of "-10%" were specified.
|
| // Spec: If the width/height attribute is not specified, the effect is as if a value of "120%" were specified.
|
|
|