Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(255)

Unified Diff: third_party/WebKit/Source/core/animation/css/CSSAnimatableValueFactory.cpp

Issue 2842933003: CSS Motion Path: delete implementation of offset-rotation property (Closed)
Patch Set: remove offsetRotation from webexposed Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/animation/css/CSSAnimatableValueFactory.cpp
diff --git a/third_party/WebKit/Source/core/animation/css/CSSAnimatableValueFactory.cpp b/third_party/WebKit/Source/core/animation/css/CSSAnimatableValueFactory.cpp
index 2e31734a8e84fe7557966b7460ff75ba613cfab1..e3c0f3633b192fdf7e02e5d4a1b8180a2a5e13b5 100644
--- a/third_party/WebKit/Source/core/animation/css/CSSAnimatableValueFactory.cpp
+++ b/third_party/WebKit/Source/core/animation/css/CSSAnimatableValueFactory.cpp
@@ -616,10 +616,9 @@ PassRefPtr<AnimatableValue> CSSAnimatableValueFactory::Create(
case CSSPropertyOffsetPosition:
return CreateFromLengthPoint(style.OffsetPosition(), style);
case CSSPropertyOffsetRotate:
- case CSSPropertyOffsetRotation:
return CreateFromDoubleAndBool(
- style.OffsetRotation().angle,
- style.OffsetRotation().type == kOffsetRotationAuto, style);
+ style.OffsetRotate().angle,
+ style.OffsetRotate().type == kOffsetRotationAuto, style);
case CSSPropertyTransformOrigin:
return CreateFromTransformOrigin(style.GetTransformOrigin(), style);
case CSSPropertyWebkitPerspectiveOriginX:

Powered by Google App Engine
This is Rietveld 408576698