| Index: third_party/WebKit/Source/core/style/GridTrackSize.h
|
| diff --git a/third_party/WebKit/Source/core/style/GridTrackSize.h b/third_party/WebKit/Source/core/style/GridTrackSize.h
|
| index 0063215eb4a0a615e5802e16e55d1f52486b1e8b..abef7b604f703bfdc10150a6f42422dd54db6e05 100644
|
| --- a/third_party/WebKit/Source/core/style/GridTrackSize.h
|
| +++ b/third_party/WebKit/Source/core/style/GridTrackSize.h
|
| @@ -103,7 +103,8 @@ class GridTrackSize {
|
| bool operator==(const GridTrackSize& other) const {
|
| return m_type == other.m_type &&
|
| m_minTrackBreadth == other.m_minTrackBreadth &&
|
| - m_maxTrackBreadth == other.m_maxTrackBreadth;
|
| + m_maxTrackBreadth == other.m_maxTrackBreadth &&
|
| + m_fitContentTrackBreadth == other.m_fitContentTrackBreadth;
|
| }
|
|
|
| void cacheMinMaxTrackBreadthTypes() {
|
|
|