| Index: Source/core/animation/AnimatableValue.h
 | 
| diff --git a/Source/core/animation/AnimatableValue.h b/Source/core/animation/AnimatableValue.h
 | 
| index 58ce56e3cf02a7d787e17f18b3c832655c501856..211b49ddfd217f8b7b05b2a0124cb374fbc1f794 100644
 | 
| --- a/Source/core/animation/AnimatableValue.h
 | 
| +++ b/Source/core/animation/AnimatableValue.h
 | 
| @@ -69,6 +69,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; }
 | 
| @@ -98,6 +99,7 @@ protected:
 | 
|          TypeLengthBox,
 | 
|          TypeLengthBoxAndBool,
 | 
|          TypeLengthPoint,
 | 
| +        TypeLengthPoint3D,
 | 
|          TypeLengthSize,
 | 
|          TypeNeutral,
 | 
|          TypeRepeatable,
 | 
| 
 |