Skip to content

Commit 8318191

Browse files
author
sgalinea
committed
Fix for Bug 14772 -Treatment of animation-iteration-count:0
1 parent 1d3156f commit 8318191

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

css3-animations/Overview.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
1+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
22
"http://www.w3.org/TR/html4/strict.dtd">
33

44
<html lang=en>
@@ -29,15 +29,15 @@
2929

3030
<h1>CSS Animations</h1>
3131

32-
<h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 26 November
32+
<h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 17 December
3333
2011</h2>
3434

3535
<dl>
3636
<dt>This version:
3737

3838
<dd><a
39-
href="http://www.w3.org/TR/2011/ED-css3-animations-20111126/">http://dev.w3.org/csswg/css3-animations/</a>
40-
<!--http://www.w3.org/TR/2011/WD-css3-animations-20111126-->
39+
href="http://www.w3.org/TR/2011/ED-css3-animations-20111217/">http://dev.w3.org/csswg/css3-animations/</a>
40+
<!--http://www.w3.org/TR/2011/WD-css3-animations-20111217-->
4141

4242
<dt>Latest version:
4343

@@ -760,10 +760,10 @@ <h3 id=the-animation-iteration-count-property-><span class=secno>3.5.
760760
A value of <span class=prop-value>&lsquo;<code
761761
class=property>infinite</code>&rsquo;</span> will cause the animation to
762762
repeat forever. Non-integer numbers will cause the animation to end
763-
part-way through a cycle. Negative values for <span
763+
part-way through a cycle. Negative values of <span
764764
class=prop-name>&lsquo;<a href="#animation-iteration-count"><code
765765
class=property>animation-iteration-count</code></a>&rsquo;</span> are
766-
treated as zero. This property is often used with an <span
766+
invalid. This property is often used with an <span
767767
class=prop-name>&lsquo;<a href="#animation-direction"><code
768768
class=property>animation-direction</code></a>&rsquo;</span> value of <span
769769
class=prop-value>&lsquo;<code

css3-animations/Overview.src.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!DOCTYPE html PUBLIC '-//W3C//DTD HTML 4.01//EN'
1+
<!DOCTYPE html PUBLIC '-//W3C//DTD HTML 4.01//EN'
22
'http://www.w3.org/TR/html4/strict.dtd'>
33

44
<html lang="en">
@@ -654,7 +654,7 @@ <h3>
654654
The <span class="prop-name">'animation-iteration-count'</span> Property
655655
</h3>
656656
<p>
657-
The <span class="prop-name">'animation-iteration-count'</span> property defines the number of times an animation cycle is played. The default value is one, meaning the animation will play from beginning to end once. A value of <span class="prop-value">'infinite'</span> will cause the animation to repeat forever. Non-integer numbers will cause the animation to end part-way through a cycle. Negative values for <span class="prop-name">'animation-iteration-count'</span> are treated as zero. This property is often used with an <span class="prop-name">'animation-direction'</span> value of <span class="prop-value">'alternate'</span>, which will cause the animation to play in reverse on alternate cycles.
657+
The <span class="prop-name">'animation-iteration-count'</span> property defines the number of times an animation cycle is played. The default value is one, meaning the animation will play from beginning to end once. A value of <span class="prop-value">'infinite'</span> will cause the animation to repeat forever. Non-integer numbers will cause the animation to end part-way through a cycle. Negative values of <span class="prop-name">'animation-iteration-count'</span> are invalid. This property is often used with an <span class="prop-name">'animation-direction'</span> value of <span class="prop-value">'alternate'</span>, which will cause the animation to play in reverse on alternate cycles.
658658
</p>
659659
<table class="propdef">
660660
<tbody>

0 commit comments

Comments
 (0)