| Index: third_party/WebKit/Source/core/svg/SVGMaskElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGMaskElement.cpp b/third_party/WebKit/Source/core/svg/SVGMaskElement.cpp
|
| index 54a16055cfe9ac76b389093dc9aa01d87de5e90e..483cd2d59786a432cb25ea411abea0b149f5059f 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGMaskElement.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGMaskElement.cpp
|
| @@ -54,11 +54,13 @@ inline SVGMaskElement::SVGMaskElement(Document& document)
|
| this,
|
| SVGNames::maskContentUnitsAttr,
|
| 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 x/y attribute is not specified, the effect is as if a value of
|
| + // "-10%" were specified.
|
| m_x->setDefaultValueAsString("-10%");
|
| m_y->setDefaultValueAsString("-10%");
|
|
|
| - // Spec: If the width/height attribute is not specified, the effect is as if a value of "120%" were specified.
|
| + // Spec: If the width/height attribute is not specified, the effect is as if a
|
| + // value of "120%" were specified.
|
| m_width->setDefaultValueAsString("120%");
|
| m_height->setDefaultValueAsString("120%");
|
|
|
|
|