| 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 efd16f9ec7b4d176192e8615861f233e7486e981..a60049f19465f6d3161914c105f55307bd8dc10f 100644
|
| --- a/third_party/WebKit/Source/core/layout/GridTrackSizingAlgorithm.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/GridTrackSizingAlgorithm.cpp
|
| @@ -283,8 +283,8 @@ LayoutUnit GridTrackSizingAlgorithmStrategy::LogicalHeightForChild(
|
|
|
| child.LayoutIfNeeded();
|
|
|
| - if (auto baseline_extent = ExtentForBaselineAlignment(child))
|
| - return baseline_extent.value();
|
| + // if (auto baseline_extent = ExtentForBaselineAlignment(child))
|
| + // return baseline_extent.value();
|
|
|
| return child.LogicalHeight() + child.MarginLogicalHeight();
|
| }
|
| @@ -314,11 +314,13 @@ LayoutUnit GridTrackSizingAlgorithmStrategy::MinContentForChild(
|
| return child.MinPreferredLogicalWidth() + margin_logical_width;
|
| }
|
|
|
| + /*
|
| if (Direction() == kForColumns && !AvailableSpace()) {
|
| DCHECK(GetLayoutGrid()->IsOrthogonalChild(child));
|
| if (auto baseline_extent = ExtentForBaselineAlignment(child))
|
| return baseline_extent.value();
|
| }
|
| + */
|
|
|
| if (UpdateOverrideContainingBlockContentSizeForChild(child,
|
| child_inline_direction))
|
|
|