| Index: third_party/WebKit/Source/core/css/cssom/TransformComponent.h
|
| diff --git a/third_party/WebKit/Source/core/css/cssom/TransformComponent.h b/third_party/WebKit/Source/core/css/cssom/TransformComponent.h
|
| index e5b169cd0f0892e32e0a5c712c31f7c9c264a0dc..756a0ae00353c87a12a03bac2c91010e6d9b126d 100644
|
| --- a/third_party/WebKit/Source/core/css/cssom/TransformComponent.h
|
| +++ b/third_party/WebKit/Source/core/css/cssom/TransformComponent.h
|
| @@ -18,8 +18,8 @@ class CORE_EXPORT TransformComponent : public GarbageCollectedFinalized<Transfor
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| enum TransformComponentType {
|
| - MatrixType, PerspectiveType, RotationType, ScaleType, SkewType, TranslateType,
|
| - Matrix3DType, Rotation3DType, Scale3DType, Translate3DType
|
| + MatrixType, PerspectiveType, RotationType, ScaleType, SkewType, TranslationType,
|
| + Matrix3DType, Rotation3DType, Scale3DType, Translation3DType
|
| };
|
|
|
| virtual ~TransformComponent() { }
|
| @@ -34,8 +34,7 @@ public:
|
| && transformType != PerspectiveType
|
| && transformType != Rotation3DType
|
| && transformType != Scale3DType
|
| - && transformType != Translate3DType
|
| - && transformType != PerspectiveType;
|
| + && transformType != Translation3DType;
|
| }
|
|
|
| String cssString() const
|
|
|