Index: Source/core/animation/css/CSSAnimations.cpp |
diff --git a/Source/core/animation/css/CSSAnimations.cpp b/Source/core/animation/css/CSSAnimations.cpp |
index 4207dda62836edec53ba3e83ac0b9e7b57aa4069..d223c018ca01eb1abd810345bf6f1b1600223932 100644 |
--- a/Source/core/animation/css/CSSAnimations.cpp |
+++ b/Source/core/animation/css/CSSAnimations.cpp |
@@ -185,6 +185,7 @@ void CSSAnimations::update(Element* element, const RenderStyle* style) |
Timing timing; |
timingFromAnimationData(animationData, timing); |
OwnPtr<CSSAnimations::EventDelegate> eventDelegate = adoptPtr(new EventDelegate(element, animationName)); |
+ // FIXME: crbug.com/268791 - Keyframes are already normalized, perhaps there should be a flag on KeyframeAnimationEffect to skip normalization. |
m_animations.set(animationName.impl(), element->document()->timeline()->play( |
Animation::create(element, KeyframeAnimationEffect::create(keyframes), timing, eventDelegate.release()).get()).get()); |
} |