| 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 a02b9b202510e0b98c849b2d278e031462ca67c0..a84b75c4e09e9bbf9d9c7f675ad116775523a692 100644
|
| --- a/third_party/WebKit/Source/core/style/ComputedStyleConstants.h
|
| +++ b/third_party/WebKit/Source/core/style/ComputedStyleConstants.h
|
| @@ -360,10 +360,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 };
|
|
|