csswg/css3-animations Overview.html,1.13,1.14 Overview.src.html,1.13,1.14

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

Modified Files:
	Overview.html Overview.src.html 
Log Message:
Fix two additional occurrences of unitless '0'.

Index: Overview.html
===================================================================
RCS file: /sources/public/csswg/css3-animations/Overview.html,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- Overview.html	26 Nov 2011 00:12:28 -0000	1.13
+++ Overview.html	26 Nov 2011 00:14:41 -0000	1.14
@@ -481,7 +481,7 @@
 
   </pre>
    Five keyframes are specified for the animation named "bounce". Between the
-   first and second keyframe (ie. between 0 and 25%) an "ease-out" timing
+   first and second keyframe (ie. between 0% and 25%) an "ease-out" timing
    function is used. Between the second and third keyframe (ie. between 25%
    and 50%) an "ease-in" timing function is used. And so on. The effect will
    appear as an element that moves up the page 50px, slowing down as it
@@ -943,10 +943,10 @@
    some time after it is applied. An <span class=prop-name>&lsquo;<a
    href="#animation-delay"><code
    class=property>animation-delay</code></a>&rsquo;</span> value of
-   &lsquo;<code class=css>0</code>&rsquo; means the animation will execute as
-   soon as it is applied. Otherwise, the value specifies an offset from the
-   moment the animation is applied, and the animation will delay execution by
-   that offset.
+   &lsquo;<code class=css>0s</code>&rsquo; means the animation will execute
+   as soon as it is applied. Otherwise, the value specifies an offset from
+   the moment the animation is applied, and the animation will delay
+   execution by that offset.
 
   <p> If the value for <span class=prop-name>&lsquo;<a
    href="#animation-delay"><code

Index: Overview.src.html
===================================================================
RCS file: /sources/public/csswg/css3-animations/Overview.src.html,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- Overview.src.html	26 Nov 2011 00:12:28 -0000	1.13
+++ Overview.src.html	26 Nov 2011 00:14:41 -0000	1.14
@@ -337,7 +337,7 @@
 
   }
 
-  </pre>Five keyframes are specified for the animation named "bounce". Between the first and second keyframe (ie. between 0 and 25%) an "ease-out" timing function is used. Between the second and third keyframe (ie. between 25% and 50%) an "ease-in" timing function is used. And so on. The effect will appear as an element that moves up the page 50px, slowing down as it reaches its highest point then speeding up as it falls back to 100px. The second half of the animation behaves in a similar manner, but only moves the element 25px units up the page. A timing function specified on the "to" or 100% keyframe is ignored
+  </pre>Five keyframes are specified for the animation named "bounce". Between the first and second keyframe (ie. between 0% and 25%) an "ease-out" timing function is used. Between the second and third keyframe (ie. between 25% and 50%) an "ease-in" timing function is used. And so on. The effect will appear as an element that moves up the page 50px, slowing down as it reaches its highest point then speeding up as it falls back to 100px. The second half of the animation behaves in a similar manner, but only moves the element 25px units up the page. A timing function specified on the "to" or 100% keyframe is ignored
       </div>
       <p>
         See <a href="#animation-timing-function_tag">the <span class="prop-name">'animation-timing-function'</span> property</a> for more information.
@@ -880,7 +880,7 @@
         The <span class="prop-name">'animation-delay'</span> property defines
         when the animation will start. It allows an animation to begin
         execution some time after it is applied. An <span
-        class="prop-name">'animation-delay'</span> value of '0' means the
+        class="prop-name">'animation-delay'</span> value of '0s' means the
         animation will execute as soon as it is applied. Otherwise, the value
         specifies an offset from the moment the animation is applied, and the
         animation will delay execution by that offset.

Received on Saturday, 26 November 2011 00:14:47 UTC