| Index: third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp b/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp
|
| index f93e329d6930aba981aa31fad2d7a673f1b4228a..377d4b3303f1434c54c6d66c6dc56432329618cb 100644
|
| --- a/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp
|
| +++ b/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp
|
| @@ -2314,6 +2314,13 @@ const CSSValue* ComputedStyleCSSValueMapping::get(
|
| return CSSIdentifierValue::create(style.display());
|
| case CSSPropertyEmptyCells:
|
| return CSSIdentifierValue::create(style.emptyCells());
|
| + case CSSPropertyPlaceContent: {
|
| + // TODO (jfernandez): The spec states that we should return the specified
|
| + // value.
|
| + return valuesForShorthandProperty(placeContentShorthand(), style,
|
| + layoutObject, styledNode,
|
| + allowVisitedStyle);
|
| + }
|
| case CSSPropertyAlignContent:
|
| return valueForContentPositionAndDistributionWithOverflowAlignment(
|
| style.alignContent(), CSSValueStretch);
|
|
|