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

Unified Diff: Source/core/rendering/RenderGrid.h

Issue 815833005: [css-grid] Handle min-content/max-content with orthogonal flows (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Utility functions for orthogonality. Created 5 years, 10 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
Index: Source/core/rendering/RenderGrid.h
diff --git a/Source/core/rendering/RenderGrid.h b/Source/core/rendering/RenderGrid.h
index ef8dcc9174d0fdf9133a39705e0e397d307d536a..8bd7be1b182fb5b160249a791d5afb8dec87a3f5 100644
--- a/Source/core/rendering/RenderGrid.h
+++ b/Source/core/rendering/RenderGrid.h
@@ -111,9 +111,14 @@ private:
GridTrackSize gridTrackSize(GridTrackSizingDirection, size_t) const;
+ bool childOverflowingContainingBlockHeight(const RenderBox&) const;
+ bool childOverflowingContainingBlockWidth(const RenderBox&) const;
+ LayoutUnit overrideContainingBlockLogicalBreadthInlineDirection(const RenderBox&) const;
+ void setOverrideContainingBlockLogicalBreadthInlineDirection(RenderBox&, LayoutUnit breadth);
+ LayoutUnit gridAreaBreadthForChildInlineDirection(const RenderBox&, Vector<GridTrack>&) const;
LayoutUnit logicalHeightForChild(RenderBox&, Vector<GridTrack>&);
- LayoutUnit minContentForChild(RenderBox&, GridTrackSizingDirection, Vector<GridTrack>& columnTracks);
- LayoutUnit maxContentForChild(RenderBox&, GridTrackSizingDirection, Vector<GridTrack>& columnTracks);
+ LayoutUnit minContentForChild(RenderBox&, GridTrackSizingDirection, Vector<GridTrack>&);
+ LayoutUnit maxContentForChild(RenderBox&, GridTrackSizingDirection, Vector<GridTrack>&);
LayoutUnit startOfColumnForChild(const RenderBox& child) const;
LayoutUnit endOfColumnForChild(const RenderBox& child) const;
LayoutUnit columnPositionLeft(const RenderBox&) const;

Powered by Google App Engine
This is Rietveld 408576698