| Index: third_party/WebKit/Source/core/style/ComputedStyle.cpp
|
| diff --git a/third_party/WebKit/Source/core/style/ComputedStyle.cpp b/third_party/WebKit/Source/core/style/ComputedStyle.cpp
|
| index d810f8209bd59bb5d48bb08144e425ef844f10cb..b971326f7406cd8cb5bd41733f4217c155f20121 100644
|
| --- a/third_party/WebKit/Source/core/style/ComputedStyle.cpp
|
| +++ b/third_party/WebKit/Source/core/style/ComputedStyle.cpp
|
| @@ -1004,8 +1004,8 @@ void ComputedStyle::applyMotionPathTransform(float originX, float originY, Trans
|
|
|
| FloatPoint point;
|
| float angle;
|
| - if (!motionPath.path().pointAndNormalAtLength(computedDistance, point, angle))
|
| - return;
|
| + motionPath.path().pointAndNormalAtLength(computedDistance, point, angle);
|
| +
|
| if (motionData.m_rotationType == MotionRotationFixed)
|
| angle = 0;
|
|
|
|
|