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

Unified Diff: Source/core/rendering/style/RenderStyleConstants.h

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/style/RenderStyleConstants.h
diff --git a/Source/core/rendering/style/RenderStyleConstants.h b/Source/core/rendering/style/RenderStyleConstants.h
index e7bf4d5ded50c94daa2319a0a7444b92ee19bea2..2dcd967dea42e757f304a2fdcf5ef1d94d95cf77 100644
--- a/Source/core/rendering/style/RenderStyleConstants.h
+++ b/Source/core/rendering/style/RenderStyleConstants.h
@@ -527,6 +527,7 @@ enum ItemPosition {
ItemPositionAuto,
ItemPositionStretch,
ItemPositionBaseline,
+ ItemPositionLastBaseline,
ItemPositionCenter,
ItemPositionStart,
ItemPositionEnd,
@@ -544,6 +545,11 @@ enum OverflowAlignment {
OverflowAlignmentSafe
};
+enum ItemPositionType {
+ NonLegacyPosition,
+ LegacyPosition
+};
+
// Reasonable maximum to prevent insane font sizes from causing crashes on some platforms (such as Windows).
static const float maximumAllowedFontSize = 1000000.0f;

Powered by Google App Engine
This is Rietveld 408576698