- From: Brian Birtles <bbirtles@mozilla.com>
- Date: Mon, 09 Dec 2013 08:30:07 +0900
- To: public-fx@w3.org
(2013/12/08 5:38), Kevin Doughty wrote: > Hello, I know this isn’t a diff, and the code might not be correct, but I am really looking forward to this one being completed. Hi Kevin, Thanks for the feedback but I wonder if you could file issues about the polyfill in the github repo for it?[1] This function is not part of the spec. Thanks, Brian [1] https://github.com/web-animations/web-animations-js > My stuff uses a lot of memory which otherwise does not get released. In TimedItem.prototype, something like this: > > // Note that this restriction is currently incomplete - for example, > // Animations which are playing forwards and have a fill of backwards > // are not in effect unless current. > // TODO: Complete this restriction. > _hasFutureEffect: function() { > return this._isCurrent() || this.specified.fill === 'both' || > (this.specified.fill === 'backwards' && !this._isCurrentDirectionForwards()) || > (this.specified.fill === 'forwards' && this._isCurrentDirectionForwards()); > }, >
Received on Sunday, 8 December 2013 23:30:41 UTC