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

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: Applied suggested changes. 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 83059ac6bcbe342ba9848fdeb3416ab3463c5ccd..66a6f82f62b1f6eec1bd14a2c8510adaa90c75dd 100644
--- a/Source/core/rendering/RenderGrid.cpp
+++ b/Source/core/rendering/RenderGrid.cpp
@@ -1160,6 +1160,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