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

Unified Diff: sky/engine/build/scripts/templates/StyleBuilderFunctions.cpp.tmpl

Issue 760183003: Enable/Unprefix Animations & Transitions, add basic tests (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: patch for landing Created 6 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
« no previous file with comments | « no previous file | sky/engine/core/animation/Animation.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/build/scripts/templates/StyleBuilderFunctions.cpp.tmpl
diff --git a/sky/engine/build/scripts/templates/StyleBuilderFunctions.cpp.tmpl b/sky/engine/build/scripts/templates/StyleBuilderFunctions.cpp.tmpl
index 6aefb5560bb8d6a3b596d87d18be1760bad3286f..a0c0e680473dca7fb422f939925b49cbdaea48b4 100644
--- a/sky/engine/build/scripts/templates/StyleBuilderFunctions.cpp.tmpl
+++ b/sky/engine/build/scripts/templates/StyleBuilderFunctions.cpp.tmpl
@@ -100,18 +100,18 @@ namespace blink {
data.{{vector}}.append(state.styleMap().mapAnimation{{attribute}}(i.value()));
}
{% endmacro %}
-{{apply_animation('CSSPropertyWebkitAnimationDelay', 'Delay', 'Animation')}}
-{{apply_animation('CSSPropertyWebkitAnimationDirection', 'Direction', 'Animation')}}
-{{apply_animation('CSSPropertyWebkitAnimationDuration', 'Duration', 'Animation')}}
-{{apply_animation('CSSPropertyWebkitAnimationFillMode', 'FillMode', 'Animation')}}
-{{apply_animation('CSSPropertyWebkitAnimationIterationCount', 'IterationCount', 'Animation')}}
-{{apply_animation('CSSPropertyWebkitAnimationName', 'Name', 'Animation')}}
-{{apply_animation('CSSPropertyWebkitAnimationPlayState', 'PlayState', 'Animation')}}
-{{apply_animation('CSSPropertyWebkitAnimationTimingFunction', 'TimingFunction', 'Animation')}}
-{{apply_animation('CSSPropertyWebkitTransitionDelay', 'Delay', 'Transition')}}
-{{apply_animation('CSSPropertyWebkitTransitionDuration', 'Duration', 'Transition')}}
-{{apply_animation('CSSPropertyWebkitTransitionProperty', 'Property', 'Transition')}}
-{{apply_animation('CSSPropertyWebkitTransitionTimingFunction', 'TimingFunction', 'Transition')}}
+{{apply_animation('CSSPropertyAnimationDelay', 'Delay', 'Animation')}}
+{{apply_animation('CSSPropertyAnimationDirection', 'Direction', 'Animation')}}
+{{apply_animation('CSSPropertyAnimationDuration', 'Duration', 'Animation')}}
+{{apply_animation('CSSPropertyAnimationFillMode', 'FillMode', 'Animation')}}
+{{apply_animation('CSSPropertyAnimationIterationCount', 'IterationCount', 'Animation')}}
+{{apply_animation('CSSPropertyAnimationName', 'Name', 'Animation')}}
+{{apply_animation('CSSPropertyAnimationPlayState', 'PlayState', 'Animation')}}
+{{apply_animation('CSSPropertyAnimationTimingFunction', 'TimingFunction', 'Animation')}}
+{{apply_animation('CSSPropertyTransitionDelay', 'Delay', 'Transition')}}
+{{apply_animation('CSSPropertyTransitionDuration', 'Duration', 'Transition')}}
+{{apply_animation('CSSPropertyTransitionProperty', 'Property', 'Transition')}}
+{{apply_animation('CSSPropertyTransitionTimingFunction', 'TimingFunction', 'Transition')}}
{% macro apply_auto(property_id, auto_getter=none, auto_setter=none, auto_identity='CSSValueAuto') %}
{% set property = properties[property_id] %}
« no previous file with comments | « no previous file | sky/engine/core/animation/Animation.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698