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

Unified Diff: third_party/WebKit/Source/core/animation/AnimationInputHelpers.cpp

Issue 2747523002: Web Animations: support cssOffset (Closed)
Patch Set: method Created 3 years, 9 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
« no previous file with comments | « third_party/WebKit/LayoutTests/animations/interpolation/resources/interpolation-test.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/animation/AnimationInputHelpers.cpp
diff --git a/third_party/WebKit/Source/core/animation/AnimationInputHelpers.cpp b/third_party/WebKit/Source/core/animation/AnimationInputHelpers.cpp
index 5a0a86cc6e16add044e87fbcb94abdc15bd38d8e..d3a9dca9113375919d44f0f16768e32d334db383 100644
--- a/third_party/WebKit/Source/core/animation/AnimationInputHelpers.cpp
+++ b/third_party/WebKit/Source/core/animation/AnimationInputHelpers.cpp
@@ -42,6 +42,8 @@ CSSPropertyID AnimationInputHelpers::keyframeAttributeToCSSProperty(
return CSSPropertyInvalid;
if (property == "cssFloat")
return CSSPropertyFloat;
+ if (property == "cssOffset")
+ return CSSPropertyOffset;
StringBuilder builder;
for (size_t i = 0; i < property.length(); ++i) {
« no previous file with comments | « third_party/WebKit/LayoutTests/animations/interpolation/resources/interpolation-test.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698