| Index: third_party/WebKit/Source/core/svg/SVGFilterPrimitiveStandardAttributes.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGFilterPrimitiveStandardAttributes.cpp b/third_party/WebKit/Source/core/svg/SVGFilterPrimitiveStandardAttributes.cpp
|
| index 653583bc00d8aeb39edf7b71b514f41b6127ea27..429a95a90857601eab98748ce645418fb5696844 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGFilterPrimitiveStandardAttributes.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGFilterPrimitiveStandardAttributes.cpp
|
| @@ -51,11 +51,13 @@ SVGFilterPrimitiveStandardAttributes::SVGFilterPrimitiveStandardAttributes(
|
| m_result(SVGAnimatedString::create(this,
|
| SVGNames::resultAttr,
|
| SVGString::create())) {
|
| - // Spec: If the x/y attribute is not specified, the effect is as if a value of "0%" were specified.
|
| + // Spec: If the x/y attribute is not specified, the effect is as if a value of
|
| + // "0%" were specified.
|
| m_x->setDefaultValueAsString("0%");
|
| m_y->setDefaultValueAsString("0%");
|
|
|
| - // Spec: If the width/height attribute is not specified, the effect is as if a value of "100%" were specified.
|
| + // Spec: If the width/height attribute is not specified, the effect is as if a
|
| + // value of "100%" were specified.
|
| m_width->setDefaultValueAsString("100%");
|
| m_height->setDefaultValueAsString("100%");
|
|
|
|
|