| Index: Source/core/animation/AnimatableValue.h
|
| diff --git a/Source/core/animation/AnimatableValue.h b/Source/core/animation/AnimatableValue.h
|
| index 47046a2958fc38c250efecb9637a92ed18492920..6dc6e9d4ac3eeba6afc804014e918c3bf3acbd01 100644
|
| --- a/Source/core/animation/AnimatableValue.h
|
| +++ b/Source/core/animation/AnimatableValue.h
|
| @@ -70,6 +70,7 @@ public:
|
| bool isLengthBox() const { return type() == TypeLengthBox; }
|
| bool isLengthBoxAndBool() const { return type() == TypeLengthBoxAndBool; }
|
| bool isLengthPoint() const { return type() == TypeLengthPoint; }
|
| + bool isLengthPoint3D() const { return type() == TypeLengthPoint3D; }
|
| bool isLengthSize() const { return type() == TypeLengthSize; }
|
| bool isNeutral() const { return type() == TypeNeutral; }
|
| bool isRepeatable() const { return type() == TypeRepeatable; }
|
| @@ -101,6 +102,7 @@ protected:
|
| TypeLengthBox,
|
| TypeLengthBoxAndBool,
|
| TypeLengthPoint,
|
| + TypeLengthPoint3D,
|
| TypeLengthSize,
|
| TypeNeutral,
|
| TypeRepeatable,
|
|
|