| Index: third_party/WebKit/Source/core/layout/LayoutGrid.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutGrid.cpp b/third_party/WebKit/Source/core/layout/LayoutGrid.cpp
|
| index 79163ae99154ce6d5e87670d99b6a02fe107e4a5..b2145582ea87a058e3a008bd85418cc0c58a70ba 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutGrid.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutGrid.cpp
|
| @@ -1226,7 +1226,7 @@ size_t LayoutGrid::computeAutoRepeatTracksCount(GridTrackSizingDirection directi
|
| DCHECK_EQ(autoRepeatTracks.size(), static_cast<size_t>(1));
|
| auto autoTrackSize = autoRepeatTracks.at(0);
|
| DCHECK(autoTrackSize.minTrackBreadth().isLength());
|
| - DCHECK(!autoTrackSize.minTrackBreadth().isContentSized());
|
| + DCHECK(!autoTrackSize.minTrackBreadth().isFlex());
|
|
|
| LayoutUnit availableSize = isRowAxis ? availableLogicalWidth() : computeContentLogicalHeight(MainOrPreferredSize, styleRef().logicalHeight(), LayoutUnit(-1));
|
| if (availableSize == -1) {
|
|
|