Skip to content

Commit 771f61a

Browse files
committed
[web-animations-1] Fix some erroneous references to property keyframes
In the "process a keyframes argument" procedure there are a number of references to 'property keyframes' and one reference to 'property-indexed keyframe' that should refer to 'processed keyframes'. This fixes #2119.
1 parent c7f2ee4 commit 771f61a

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

web-animations-1/Overview.bs

+12-12
Original file line numberDiff line numberDiff line change
@@ -5228,7 +5228,7 @@ keyframes using the following procedure:
52285228
52295229
1. Assign each value in <var>offsets</var> to the <a>keyframe
52305230
offset</a> of the <a>keyframe</a> with corresponding position in
5231-
<var>property keyframes</var> until the end of either sequence is
5231+
<var>processed keyframes</var> until the end of either sequence is
52325232
reached.
52335233
52345234
1. Let <var>easings</var> be a sequence of <code>DOMString</code>
@@ -5251,29 +5251,29 @@ keyframes using the following procedure:
52515251
of length one containing the single value &ldquo;linear&rdquo;, i.e.
52525252
&laquo;&nbsp;"linear"&nbsp;&raquo;.
52535253
5254-
1. If <var>easings</var> has fewer items than <var>property
5254+
1. If <var>easings</var> has fewer items than <var>processed
52555255
keyframes</var>, repeat the elements in <var>easings</var>
52565256
successively starting from the beginning of the list until
5257-
<var>easings</var> has as many items as <var>property
5257+
<var>easings</var> has as many items as <var>processed
52585258
keyframes</var>.
52595259
52605260
<div class=example>
5261-
For example, if <var>property-indexed keyframe</var> has
5261+
For example, if <var>processed keyframes</var> has
52625262
five items, and <var>easings</var> is the sequence
52635263
&laquo;&nbsp;"ease-in", "ease-out"&nbsp;&raquo;,
52645264
<var>easings</var> would be repeated to become
52655265
&laquo;&nbsp;"ease-in", "ease-out", "ease-in", "ease-out",
52665266
"ease-in"&nbsp;&raquo;.
52675267
</div>
52685268
5269-
1. If <var>easings</var> has more items than <var>property
5269+
1. If <var>easings</var> has more items than <var>processed
52705270
keyframes</var>, store the excess items as <var>unused
52715271
easings</var>.
52725272
52735273
1. Assign each value in <var>easings</var> to a property named
52745274
&ldquo;easing&rdquo; on the <a>keyframe</a> with the corresponding
5275-
position in <var>property keyframes</var> until the end of
5276-
<var>property keyframes</var> is reached.
5275+
position in <var>processed keyframes</var> until the end of
5276+
<var>processed keyframes</var> is reached.
52775277
52785278
1. If the &ldquo;composite&rdquo; member of the <var>property-indexed
52795279
keyframe</var> is <em>not</em> an empty sequence:
@@ -5286,16 +5286,16 @@ keyframes using the following procedure:
52865286
the value of the &ldquo;composite&rdquo; as its single item.
52875287
52885288
1. As with <var>easings</var>, if <var>composite modes</var>
5289-
has fewer items than <var>property keyframes</var>, repeat the
5289+
has fewer items than <var>processed keyframes</var>, repeat the
52905290
elements in <var>composite modes</var> successively starting
52915291
from the beginning of the list until <var>composite modes</var>
5292-
has as many items as <var>property keyframes</var>.
5292+
has as many items as <var>processed keyframes</var>.
52935293
52945294
1. Assign each value in <var>composite modes</var> to the
52955295
<a>keyframe-specific composite operation</a> on the
5296-
<a>keyframe</a> with the corresponding position in <var>property
5297-
keyframes</var> until the end of <var>property keyframes</var>
5298-
is reached.
5296+
<a>keyframe</a> with the corresponding position in
5297+
<var>processed keyframes</var> until the end of <var>processed
5298+
keyframes</var> is reached.
52995299
53005300
</div>
53015301

0 commit comments

Comments
 (0)