Index: Source/core/rendering/style/RenderStyleConstants.h |
diff --git a/Source/core/rendering/style/RenderStyleConstants.h b/Source/core/rendering/style/RenderStyleConstants.h |
index 04d96a1d8d3f5de60cbad142b26ac9db9c540d95..096b1a919e41c35c20d0ebb7f3dc74e82e1f84a9 100644 |
--- a/Source/core/rendering/style/RenderStyleConstants.h |
+++ b/Source/core/rendering/style/RenderStyleConstants.h |
@@ -520,6 +520,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; |