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

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

Issue 333423005: [CSS Grid Layout] Implement 'justify-items' parsing (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Patch rebased. Created 6 years, 6 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.cpp
diff --git a/Source/core/rendering/RenderGrid.cpp b/Source/core/rendering/RenderGrid.cpp
index 37bcc5c1398eb9605615c54aadced968b121100e..332ff145beb7fdc13799cd54bd775e911f8d996a 100644
--- a/Source/core/rendering/RenderGrid.cpp
+++ b/Source/core/rendering/RenderGrid.cpp
@@ -1133,6 +1133,7 @@ LayoutUnit RenderGrid::columnPositionForChild(const RenderBox* child) const
case ItemPositionAuto:
case ItemPositionStretch:
case ItemPositionBaseline:
+ case ItemPositionLastBaseline:
// FIXME: Implement the previous values. For now, we always start align the child.
return startOfColumnForChild(child);
}

Powered by Google App Engine
This is Rietveld 408576698