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

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

Issue 17090005: [CSS Grid Layout] Implement 'justify-self' parsing (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed a bug in parseColor uncovered by the patch Created 6 years, 11 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
« no previous file with comments | « Source/core/rendering/style/RenderStyle.h ('k') | Source/core/rendering/style/StyleRareNonInheritedData.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/style/RenderStyleConstants.h
diff --git a/Source/core/rendering/style/RenderStyleConstants.h b/Source/core/rendering/style/RenderStyleConstants.h
index e1efd267f547ca405e3db12d02d7893ea1ee1875..b8ec6f13058d7fb8ae1744f2a4e70e929a52cf6e 100755
--- a/Source/core/rendering/style/RenderStyleConstants.h
+++ b/Source/core/rendering/style/RenderStyleConstants.h
@@ -531,6 +531,27 @@ enum EIsolation { IsolationAuto, IsolationIsolate };
enum TouchActionDelay { TouchActionDelayNone, TouchActionDelayScript };
+enum JustifySelf {
+ JustifySelfAuto,
+ JustifySelfStretch,
+ JustifySelfBaseline,
+ JustifySelfCenter,
+ JustifySelfStart,
+ JustifySelfEnd,
+ JustifySelfSelfStart,
+ JustifySelfSelfEnd,
+ JustifySelfFlexStart,
+ JustifySelfFlexEnd,
+ JustifySelfLeft,
+ JustifySelfRight
+};
+
+enum JustifySelfOverflowAlignment {
+ JustifySelfOverflowAlignmentDefault,
+ JustifySelfOverflowAlignmentTrue,
+ JustifySelfOverflowAlignmentSafe
+};
+
// Reasonable maximum to prevent insane font sizes from causing crashes on some platforms (such as Windows).
static const float maximumAllowedFontSize = 1000000.0f;
« no previous file with comments | « Source/core/rendering/style/RenderStyle.h ('k') | Source/core/rendering/style/StyleRareNonInheritedData.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698