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

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

Issue 2555543002: CSS Motion Path: Support offset-rotate in addition to offset-rotation (Closed)
Patch Set: reformat Created 4 years 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 6641d8abc3643b2a574912dfe67815257a195630..cc0489fb1b0fc077f1ad2646accb2f9734ab632a 100644
--- a/third_party/WebKit/Source/core/animation/css/CSSAnimatableValueFactory.cpp
+++ b/third_party/WebKit/Source/core/animation/css/CSSAnimatableValueFactory.cpp
@@ -620,6 +620,7 @@ PassRefPtr<AnimatableValue> CSSAnimatableValueFactory::create(
return createFromLength(style.offsetDistance(), style);
case CSSPropertyOffsetPosition:
return createFromLengthPoint(style.offsetPosition(), style);
+ case CSSPropertyOffsetRotate:
case CSSPropertyOffsetRotation:
return createFromDoubleAndBool(
style.offsetRotation().angle,

Powered by Google App Engine
This is Rietveld 408576698