updated CSS Transitions and Animations drafts

I updated the drafts after feedback from David and Sylvain.


http://dev.w3.org/csswg/css3-transitions/

2011-04-05 dino@apple.com

- change shorthand transition description to say that *any* transitionable
  property will move
- steps() takes an integer >= 1
- cubic bezier timing function can take control points with y
  values outside [0,1]


http://dev.w3.org/csswg/css3-animations/

2011-04-05 dino@apple.com

- describe that animationstart event fires after delay has expired
  either with a zero elapsedTime (in the case where delay >= 0) or
  -1 * delay (in the case where delay < 0)
- if the same property is animated in multiple animations, then the
  animation-name closest to the end of the list wins.
- animation-name is the dominant property for lists. Every other property
  repeats to fill whatever animation-name requires.
- insertRule is now appendRule (always appends, does not replace)
- describe that animations with a 0 duration still respect fill mode, delay
  and fire events.

Received on Tuesday, 5 April 2011 19:28:17 UTC