| Index: third_party/WebKit/Source/core/style/ComputedStyle.h
|
| diff --git a/third_party/WebKit/Source/core/style/ComputedStyle.h b/third_party/WebKit/Source/core/style/ComputedStyle.h
|
| index 39b416e4009abaa07bdff87df190a6c9576c6925..b87ae3579e113d3e4c7e90d5503196b5cdbea70b 100644
|
| --- a/third_party/WebKit/Source/core/style/ComputedStyle.h
|
| +++ b/third_party/WebKit/Source/core/style/ComputedStyle.h
|
| @@ -472,7 +472,7 @@ public:
|
| // Non-Inherited properties.
|
|
|
| // Content alignment properties.
|
| - static StyleContentAlignmentData initialContentAlignment() { return StyleContentAlignmentData(ContentPositionNormal, ContentDistributionDefault, OverflowAlignmentDefault); }
|
| + static StyleContentAlignmentData initialContentAlignment() { return StyleContentAlignmentData(RuntimeEnabledFeatures::cssGridLayoutEnabled() ? ContentPositionNormal : ContentPositionFlexStart, ContentDistributionDefault, OverflowAlignmentDefault); }
|
|
|
| // align-content (aka -webkit-align-content)
|
| const StyleContentAlignmentData& alignContent() const { return m_rareNonInheritedData->m_alignContent; }
|
|
|