| Index: third_party/WebKit/Source/core/layout/GridTrackSizingAlgorithm.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/GridTrackSizingAlgorithm.cpp b/third_party/WebKit/Source/core/layout/GridTrackSizingAlgorithm.cpp
|
| index 7927dbe4771369b8049c3a08b38ead8cbcd574bf..cf41414466b10852dfa7063396d2510762f4ffb4 100644
|
| --- a/third_party/WebKit/Source/core/layout/GridTrackSizingAlgorithm.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/GridTrackSizingAlgorithm.cpp
|
| @@ -374,8 +374,8 @@ LayoutUnit GridTrackSizingAlgorithmStrategy::minSizeForChild(
|
| : child.styleRef().logicalMinHeight();
|
| bool overflowIsVisible =
|
| isRowAxis
|
| - ? child.styleRef().overflowInlineDirection() == EOverflow::Visible
|
| - : child.styleRef().overflowBlockDirection() == EOverflow::Visible;
|
| + ? child.styleRef().overflowInlineDirection() == EOverflow::kVisible
|
| + : child.styleRef().overflowBlockDirection() == EOverflow::kVisible;
|
| if (!childSize.isAuto() || (childMinSize.isAuto() && overflowIsVisible))
|
| return minContentForChild(child);
|
|
|
|
|