W3C home > Mailing lists > Public > public-fx@w3.org > October to December 2013

Re: [web-animations] Web Animations minutes, 5 / 6 Dec 2013

From: Kevin Doughty <css@kxdx.org>
Date: Sat, 7 Dec 2013 15:38:53 -0500
Cc: "public-fx@w3.org" <public-fx@w3.org>
Message-Id: <EE1D2196-4CC9-4829-B23F-1F7AC82AFDFC@kxdx.org>
To: Brian Birtles <bbirtles@mozilla.com>
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. 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 Saturday, 7 December 2013 20:39:23 UTC

This archive was generated by hypermail 2.4.0 : Friday, 17 January 2020 19:49:47 UTC