Skip to content

Commit 0e8b94d

Browse files
committed
Spell-check the specification.
1 parent fb5958b commit 0e8b94d

2 files changed

Lines changed: 13 additions & 13 deletions

File tree

css3-animations/Overview.html

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@
1515

1616
<h1>CSS Animations</h1>
1717

18-
<h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 15 February
18+
<h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 17 February
1919
2012</h2>
2020

2121
<dl>
2222
<dt>This version:
2323

2424
<dd><a
25-
href="http://www.w3.org/TR/2012/ED-css3-animations-20120215/">http://dev.w3.org/csswg/css3-animations/</a>
26-
<!--http://www.w3.org/TR/2012/WD-css3-animations-20120215-->
25+
href="http://www.w3.org/TR/2012/ED-css3-animations-20120217/">http://dev.w3.org/csswg/css3-animations/</a>
26+
<!--http://www.w3.org/TR/2012/WD-css3-animations-20120217-->
2727

2828
<dt>Latest version:
2929

@@ -257,7 +257,7 @@ <h2 id=animations><span class=secno>2. </span>Animations</h2>
257257
<p> The start time of an animation is the latter of two moments: the time
258258
at which the style is resolved that specifies the animation, or the time
259259
the document's load event is fired. Therefore, an animation specified in
260-
the document stylesheet will begin at the document load. An animation
260+
the document style sheet will begin at the document load. An animation
261261
specified on an element by modifying the style after the document has
262262
loaded will start when the style is resolved. That may be immediately in
263263
the case of a pseudo style rule such as hover, or may be when the
@@ -273,7 +273,7 @@ <h2 id=animations><span class=secno>2. </span>Animations</h2>
273273
animation starts. Changing them during the execution of the animation has
274274
no effect. Note also, that changing the value of <a
275275
href="#animation-name"><code class=property>'animation-name'</code></a>
276-
does not necessarily restart an animation (e.g. if a list of animations
276+
does not necessarily restart an animation (e.g., if a list of animations
277277
are applied and one is removed from the list, only that animation will
278278
stop; The other animations will continue). In order to restart an
279279
animation, it must be removed then reapplied.
@@ -472,8 +472,8 @@ <h3 id=timing-functions-for-keyframes-><span class=secno>3.1. </span>
472472

473473
</pre>
474474
Five keyframes are specified for the animation named "bounce". Between the
475-
first and second keyframe (ie. between 0% and 25%) an "ease-out" timing
476-
function is used. Between the second and third keyframe (ie. between 25%
475+
first and second keyframe (i.e., between 0% and 25%) an "ease-out" timing
476+
function is used. Between the second and third keyframe (i.e., between 25%
477477
and 50%) an "ease-in" timing function is used. And so on. The effect will
478478
appear as an element that moves up the page 50px, slowing down as it
479479
reaches its highest point then speeding up as it falls back to 100px. The
@@ -1086,8 +1086,8 @@ <h3 id=the-animation-shorthand-property-><span class=secno>3.10. </span>
10861086
value that can be parsed as a time is assigned to animation-delay.
10871087

10881088
<p class=issue> An alternative proposal is to accept the font shorthand
1089-
approach of using a "/" character between the values of the same type. eg.
1090-
2s/4s would mean a duration of 2 seconds and a delay of 4 seconds.
1089+
approach of using a "/" character between the values of the same type.
1090+
e.g. 2s/4s would mean a duration of 2 seconds and a delay of 4 seconds.
10911091

10921092
<table class=propdef>
10931093
<tbody>

css3-animations/Overview.src.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ <h2>Animations</h2>
127127
<p>
128128
The start time of an animation is the latter of two moments: the time at which the style is
129129
resolved that specifies the animation, or the time the document's load event is fired.
130-
Therefore, an animation specified in the document stylesheet will begin at the document load.
130+
Therefore, an animation specified in the document style sheet will begin at the document load.
131131
An animation specified on an element by modifying the style after the document has loaded will
132132
start when the style is resolved. That may be immediately in the case of a pseudo style rule
133133
such as hover, or may be when the scripting engine returns control to the browser (in the case
@@ -143,7 +143,7 @@ <h2>Animations</h2>
143143
time the animation starts. Changing them during the execution of the
144144
animation has no effect. Note also, that changing the value of
145145
<code class="property">'animation-name'</code> does not necessarily
146-
restart an animation (e.g. if a list of animations are applied and
146+
restart an animation (e.g., if a list of animations are applied and
147147
one is removed from the list, only that animation will stop; The other
148148
animations will continue). In order to restart an animation, it must be
149149
removed then reapplied.
@@ -330,7 +330,7 @@ <h3>
330330

331331
}
332332

333-
</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
333+
</pre>Five keyframes are specified for the animation named "bounce". Between the first and second keyframe (i.e., between 0% and 25%) an "ease-out" timing function is used. Between the second and third keyframe (i.e., 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
334334
</div>
335335
<p>
336336
See <a href="#animation-timing-function_tag">the <code class="property">'animation-timing-function'</code>
@@ -1083,7 +1083,7 @@ <h3>
10831083
</p>
10841084
<p class="issue">
10851085
An alternative proposal is to accept the font shorthand approach of
1086-
using a "/" character between the values of the same type. eg. 2s/4s would
1086+
using a "/" character between the values of the same type. e.g. 2s/4s would
10871087
mean a duration of 2 seconds and a delay of 4 seconds.
10881088
</p>
10891089
<table class="propdef">

0 commit comments

Comments
 (0)