Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(667)

Unified Diff: third_party/WebKit/Source/core/style/GridTrackSize.h

Issue 2420673002: [css-grid] Recompute track sizes if fit-content() argument is modified (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-change-fit-content-argument-expected.txt ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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() {
« no previous file with comments | « third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-change-fit-content-argument-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698