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

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: 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/style/RenderStyleConstants.h
diff --git a/Source/core/rendering/style/RenderStyleConstants.h b/Source/core/rendering/style/RenderStyleConstants.h
index f2a3d006af036e457d5c3ae846a64704f457eb93..83740d2804d7f52e6f7ed3375a45c0cdfcdd1a83 100644
--- a/Source/core/rendering/style/RenderStyleConstants.h
+++ b/Source/core/rendering/style/RenderStyleConstants.h
@@ -508,6 +508,7 @@ enum ItemPosition {
ItemPositionAuto,
ItemPositionStretch,
ItemPositionBaseline,
+ ItemPositionLastBaseline,
ItemPositionCenter,
ItemPositionStart,
ItemPositionEnd,
@@ -525,6 +526,11 @@ enum OverflowAlignment {
OverflowAlignmentSafe
};
+enum LegacyPosition {
+ LegacyPositionFalse,
+ LegacyPositionTrue
Julien - ping for review 2014/06/26 17:37:20 Maybe better naming LegacyPosition vs NotALegacyPo
jfernandez 2014/06/26 22:36:05 Done.
+};
+
// 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