csswg/css3-animations ChangeLog,1.6,1.7 Overview.html,1.8,1.9 Overview.src.html,1.9,1.10

Update of /sources/public/csswg/css3-animations
In directory hutz:/tmp/cvs-serv28397

Modified Files:
	ChangeLog Overview.html Overview.src.html 
Log Message:
Animations

- describe that animations with a 0 duration still respect fill mode, delay
  and fire events.



Index: Overview.html
===================================================================
RCS file: /sources/public/csswg/css3-animations/Overview.html,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- Overview.html	5 Apr 2011 19:15:19 -0000	1.8
+++ Overview.html	5 Apr 2011 19:27:07 -0000	1.9
@@ -639,10 +639,14 @@
   </table>
 
   <p> By default the value is &lsquo;<code class=css>0</code>&rsquo;, meaning
-   that the animation cycle is immediate (i.e. there will be no animation). A
-   negative value for <a class=prop-name
-   href="#animation-duration">animation-duration</a> is treated as
-   &lsquo;<code class=css>0</code>&rsquo;.</p>
+   that the animation cycle is immediate. A negative value for <a
+   class=prop-name href="#animation-duration">animation-duration</a> is
+   treated as &lsquo;<code class=css>0</code>&rsquo;. In this case <a
+   class=prop-name href="#animation-fill-mode">animation-fill-mode</a> still
+   applies, so an animation that fills backwards will show the value of the
+   0% keyframe during any delay period, and an animation that fill forwards
+   will retain the value specified at the 100% keyframe, even if the
+   animation was instantaneous. Also, animation events are still fired.</p>
   <!-- ======================================================================================================= -->
 
   <h3 id="animation-timing-function_tag"><span class=secno>3.4. </span> The

Index: ChangeLog
===================================================================
RCS file: /sources/public/csswg/css3-animations/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- ChangeLog	5 Apr 2011 19:15:19 -0000	1.6
+++ ChangeLog	5 Apr 2011 19:27:07 -0000	1.7
@@ -10,6 +10,8 @@
 - 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.
 
 2011-03-21 simon.fraser@apple.com
 

Index: Overview.src.html
===================================================================
RCS file: /sources/public/csswg/css3-animations/Overview.src.html,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- Overview.src.html	5 Apr 2011 19:15:19 -0000	1.9
+++ Overview.src.html	5 Apr 2011 19:27:07 -0000	1.10
@@ -545,7 +545,14 @@
       </table>
 
       <p>
-        By default the value is '0', meaning that the animation cycle is immediate (i.e. there will be no animation). A negative value for <span class="prop-name">animation-duration</span> is treated as '0'.
+        By default the value is '0', meaning that the animation cycle is
+        immediate. A negative value for <span
+        class="prop-name">animation-duration</span> is treated as '0'. In this
+        case <span class="prop-name">animation-fill-mode</span> still applies,
+        so an animation that fills backwards will show the value of the 0%
+        keyframe during any delay period, and an animation that fill forwards
+        will retain the value specified at the 100% keyframe, even if the
+        animation was instantaneous. Also, animation events are still fired.
       </p>
 
       <!-- ======================================================================================================= -->

Received on Tuesday, 5 April 2011 19:27:10 UTC