[css3-animations] Parsing of time values in animation shorthand

http://dev.w3.org/csswg/css3-animations/#the-animation-shorthand-property-

"Note that order is important in this property. The first value that can  
be parsed as a time is assigned to the animation-duration. The second  
value that can be parsed as a time is assigned to animation-delay."

This wording is inaccurate. Clearly,

animation: foo 1s, bar 2s;

should give

animation-duration: 1s, 2s;
animation-delay: 0s;
[...]

and not

animation-duration: 1s;
animation-delay: 2s;
[...]

-- 
Øyvind Stenhaug
Core Norway, Opera Software ASA

Received on Wednesday, 12 October 2011 13:49:08 UTC