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

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

Issue 637033003: [CSS Grid Layout] Fix positioned grid children position and size (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Minor fix in a comment Created 6 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
Index: Source/core/rendering/RenderGrid.h
diff --git a/Source/core/rendering/RenderGrid.h b/Source/core/rendering/RenderGrid.h
index 6f17556a22776a0014c78a93314c230b05a58a03..b472caeb22c9c1388da016a082940db2e3553877 100644
--- a/Source/core/rendering/RenderGrid.h
+++ b/Source/core/rendering/RenderGrid.h
@@ -125,6 +125,9 @@ private:
GridCoordinate cachedGridCoordinate(const RenderBox&) const;
LayoutUnit gridAreaBreadthForChild(const RenderBox& child, GridTrackSizingDirection, const Vector<GridTrack>&) const;
+ LayoutUnit gridAreaBreadthForAbsolutelyPositionedChild(const RenderBox& child, GridTrackSizingDirection, const Vector<GridTrack>&, LayoutUnit& extraInitialOffset) const;
+
+ bool isAbsolutelyPositionedGridItemWithContainingBlockThis(const RenderBox& child) const;
virtual void paintChildren(PaintInfo&, const LayoutPoint&) OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698