| 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 c4039b76de59793f2ea138ba44a8eac7db93e244..195db99397ce27572f3d579e60a7543d2dc86c44 100644
|
| --- a/third_party/WebKit/Source/core/css/cssom/TransformComponent.h
|
| +++ b/third_party/WebKit/Source/core/css/cssom/TransformComponent.h
|
| @@ -16,8 +16,8 @@ class CORE_EXPORT TransformComponent : public GarbageCollectedFinalized<Transfor
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| enum TransformComponentType {
|
| - MatrixType, PerspectiveType, RotateType, ScaleType, SkewType, TranslateType,
|
| - Matrix3DType, Rotate3DType, Scale3DType, Translate3DType
|
| + MatrixType, PerspectiveType, RotationType, ScaleType, SkewType, TranslateType,
|
| + Matrix3DType, Rotation3DType, Scale3DType, Translate3DType
|
| };
|
|
|
| virtual ~TransformComponent() { }
|
| @@ -28,7 +28,8 @@ public:
|
| {
|
| TransformComponentType transformType = type();
|
| return transformType != Matrix3DType
|
| - && transformType != Rotate3DType
|
| + && transformType != PerspectiveType
|
| + && transformType != Rotation3DType
|
| && transformType != Scale3DType
|
| && transformType != Translate3DType;
|
| }
|
|
|