| Index: Source/devtools/front_end/sdk/AnimationModel.js
|
| diff --git a/Source/devtools/front_end/sdk/AnimationModel.js b/Source/devtools/front_end/sdk/AnimationModel.js
|
| index 96923241045eec51b81fbc442221089ddcea879a..b0e8aa71c4aa4870e05612e6676d54fd43cae276 100644
|
| --- a/Source/devtools/front_end/sdk/AnimationModel.js
|
| +++ b/Source/devtools/front_end/sdk/AnimationModel.js
|
| @@ -152,7 +152,7 @@
|
| {
|
| if (!this.source().iterations)
|
| return Infinity;
|
| - return this.startTime() + this.source().delay() + this.source().duration() * this.source().iterations() + this.source().endDelay();
|
| + return this.startTime() + this.source().duration() * this.source().iterations();
|
| },
|
|
|
| /**
|
| @@ -233,14 +233,6 @@
|
| /**
|
| * @return {number}
|
| */
|
| - endDelay: function()
|
| - {
|
| - return this._payload.endDelay;
|
| - },
|
| -
|
| - /**
|
| - * @return {number}
|
| - */
|
| playbackRate: function()
|
| {
|
| return this._payload.playbackRate;
|
| @@ -259,7 +251,7 @@
|
| */
|
| iterations: function()
|
| {
|
| - return this._payload.iterations || Infinity;
|
| + return this._payload.iterations;
|
| },
|
|
|
| /**
|
|
|