| Index: Source/devtools/front_end/elements/AnimationTimeline.js
|
| diff --git a/Source/devtools/front_end/elements/AnimationTimeline.js b/Source/devtools/front_end/elements/AnimationTimeline.js
|
| index b8c496a74ba361ade64c588bb80aea30271c2c08..d3602f75df04280ad6bc2c632ed9ed2de0742ff0 100644
|
| --- a/Source/devtools/front_end/elements/AnimationTimeline.js
|
| +++ b/Source/devtools/front_end/elements/AnimationTimeline.js
|
| @@ -786,8 +786,7 @@ WebInspector.AnimationUI.prototype = {
|
| var duration = this._duration();
|
| this._setDelay(delay);
|
| this._setDuration(duration);
|
| - // FIXME: Transition timing updates currently not supported
|
| - if (this._animation.type() == "WebAnimation") {
|
| + if (this._animation.type() !== "CSSAnimation") {
|
| var target = WebInspector.targetManager.mainTarget();
|
| if (target)
|
| target.animationAgent().setTiming(this._animation.id(), duration, delay);
|
|
|