| Index: third_party/WebKit/Source/core/style/ComputedStyleConstants.h
|
| diff --git a/third_party/WebKit/Source/core/style/ComputedStyleConstants.h b/third_party/WebKit/Source/core/style/ComputedStyleConstants.h
|
| index 243afcd4ba8d6753358490f3636283b85a0ad662..c381ef9ba389c2cb85d813fc1bd3eadabf3cf7fe 100644
|
| --- a/third_party/WebKit/Source/core/style/ComputedStyleConstants.h
|
| +++ b/third_party/WebKit/Source/core/style/ComputedStyleConstants.h
|
| @@ -350,10 +350,21 @@ enum CSSBoxType {
|
| kContentBox
|
| };
|
|
|
| -enum ScrollSnapType {
|
| - kScrollSnapTypeNone,
|
| - kScrollSnapTypeMandatory,
|
| - kScrollSnapTypeProximity
|
| +enum SnapAxis {
|
| + kSnapAxisBoth,
|
| + kSnapAxisX,
|
| + kSnapAxisY,
|
| + kSnapAxisBlock,
|
| + kSnapAxisInline,
|
| +};
|
| +
|
| +enum SnapStrictness { kSnapStrictnessProximity, kSnapStrictnessMandatory };
|
| +
|
| +enum SnapAlignment {
|
| + kSnapAlignmentNone,
|
| + kSnapAlignmentStart,
|
| + kSnapAlignmentEnd,
|
| + kSnapAlignmentCenter
|
| };
|
|
|
| enum AutoRepeatType { kNoAutoRepeat, kAutoFill, kAutoFit };
|
|
|