| Index: third_party/WebKit/Source/core/css/properties/CSSShorthandPropertyAPIWebkitMarginCollapse.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/properties/CSSShorthandPropertyAPIWebkitMarginCollapse.cpp b/third_party/WebKit/Source/core/css/properties/CSSShorthandPropertyAPIWebkitMarginCollapse.cpp
|
| index cf22436b2d7398c2a590763bf3e02482ea477663..30a0048ec177dc5b4e14843e212b772ee277f351 100644
|
| --- a/third_party/WebKit/Source/core/css/properties/CSSShorthandPropertyAPIWebkitMarginCollapse.cpp
|
| +++ b/third_party/WebKit/Source/core/css/properties/CSSShorthandPropertyAPIWebkitMarginCollapse.cpp
|
| @@ -25,12 +25,14 @@ bool CSSShorthandPropertyAPIWebkitMarginCollapse::parseShorthand(
|
| CSSValue* before_collapse = CSSIdentifierValue::Create(id);
|
| CSSPropertyParserHelpers::AddProperty(
|
| CSSPropertyWebkitMarginBeforeCollapse, CSSPropertyWebkitMarginCollapse,
|
| - *before_collapse, important, false /* implicit */, properties);
|
| + *before_collapse, important,
|
| + CSSPropertyParserHelpers::ImplicitProperty::kNotImplicit, properties);
|
|
|
| if (range.AtEnd()) {
|
| CSSPropertyParserHelpers::AddProperty(
|
| CSSPropertyWebkitMarginAfterCollapse, CSSPropertyWebkitMarginCollapse,
|
| - *before_collapse, important, false /* implicit */, properties);
|
| + *before_collapse, important,
|
| + CSSPropertyParserHelpers::ImplicitProperty::kNotImplicit, properties);
|
| return true;
|
| }
|
|
|
| @@ -40,8 +42,8 @@ bool CSSShorthandPropertyAPIWebkitMarginCollapse::parseShorthand(
|
| return false;
|
| CSSPropertyParserHelpers::AddProperty(
|
| CSSPropertyWebkitMarginAfterCollapse, CSSPropertyWebkitMarginCollapse,
|
| - *CSSIdentifierValue::Create(id), important, false /* implicit */,
|
| - properties);
|
| + *CSSIdentifierValue::Create(id), important,
|
| + CSSPropertyParserHelpers::ImplicitProperty::kNotImplicit, properties);
|
| return true;
|
| }
|
|
|
|
|