| 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 1adb46d299c96f060416826484f86a7aabc34333..45811c84a03e1fa1c89e253203a334e592cf92a4 100644
|
| --- a/third_party/WebKit/Source/core/style/ComputedStyleConstants.h
|
| +++ b/third_party/WebKit/Source/core/style/ComputedStyleConstants.h
|
| @@ -372,12 +372,29 @@ enum CSSBoxType {
|
| kContentBox
|
| };
|
|
|
| -enum ScrollSnapType {
|
| - kScrollSnapTypeNone,
|
| - kScrollSnapTypeMandatory,
|
| - kScrollSnapTypeProximity
|
| +enum SnapAxis {
|
| + kSnapAxisNone,
|
| + kSnapAxisX,
|
| + kSnapAxisY,
|
| + kSnapAxisBlock,
|
| + kSnapAxisInline,
|
| + kSnapAxisBoth
|
| };
|
|
|
| +enum SnapStrictness { kSnapStrictnessProximity, kSnapStrictnessMandatory };
|
| +
|
| +enum SnapAlignment {
|
| + kSnapAlignmentNone,
|
| + kSnapAlignmentStart,
|
| + kSnapAlignmentEnd,
|
| + kSnapAlignmentCenter
|
| +};
|
| +
|
| +/*enum ScrollSnapStop {
|
| + kScrollSnapStopNormal,
|
| + kScrollSnapStopAlways
|
| +};*/
|
| +
|
| enum AutoRepeatType { kNoAutoRepeat, kAutoFill, kAutoFit };
|
|
|
| // Page size type.
|
|
|