Re: Javascript properties and Houdini types

2015-11-30 Thread Kevin Doughty
// Perhaps a declaration with minimal animation settings could look something like this: var myObject = { ivar: Math.PI * 2 }; Object.defineProperty(myObject, 'arbitrary', { get: function() { return ivar; }, set: function(value) { ivar = value; }, enumerable: true, configurable: true,

Re: [web-animations] Fixing getAnimations()

2015-11-30 Thread Brian Birtles
Hi Kevin, Thanks for your mail. On 2015/11/30 6:31, Kevin Doughty wrote: Why is there a distinction between CSS transitionProperty and CSS animationName and script based animation id? Why are these three not one and the same? All Animations have an id which is essentially Animation's name.