Skip to content

Commit 5f8db1e

Browse files
committed
Fix some mismatched tag and metadata errors.
This fixes some mismatched tag and metadata errors (and a few other things) that have recently become bikeshed errors and were preventing these specs from generating without ignoring fatal errors.
1 parent 6b64e02 commit 5f8db1e

File tree

10 files changed

+19
-23
lines changed

10 files changed

+19
-23
lines changed

css-align-3/Overview.bs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2235,7 +2235,7 @@ Baseline Alignment Details</h2>
22352235
for more information on baselines and writing modes.
22362236

22372237
<h3 id='baseline-export'>
2238-
Determining the Baselines of a Box</h2>
2238+
Determining the Baselines of a Box</h3>
22392239

22402240
Each box,
22412241
for a given axis,

css-animations-1/Overview.bs

+10-10
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Former Editor: Chris Marrin, Apple Inc.
2222
Former Editor: Sylvain Galineau, Adobe, galineau@adobe.com
2323
!Issues List: https://github.com/w3c/csswg-drafts/labels/css-animations-1
2424
25-
<!-- <a href="https://www.w3.org/Bugs/Public/buglist.cgi?component=Animations&list_id=36653&product=CSS&query_format=advanced&resolution=---">In Bugzilla</a> -->
25+
<!-- <a href="https://www.w3.org/Bugs/Public/buglist.cgi?component=Animations&list_id=36653&product=CSS&query_format=advanced&resolution=---">In Bugzilla</a> -->
2626
2727
Abstract: This CSS module describes a way for authors to animate the values of CSS properties over time, using keyframes. The behavior of these keyframe animations can be controlled by specifying their duration, number of repeats, and repeating behavior.
2828
@@ -1387,25 +1387,25 @@ Working Group Resolutions that are pending editing</h2>
13871387
<ul>
13881388
<li>Issue(7335): Detail how/when keyframe values are computed; using <a href="http://lists.w3.org/Archives/Public/www-style/2014Aug/0132.html">G.beta in dbaron's mail</a>
13891389
<li><del>Agreed that both transitions and animations animate all properties. css-transitions to define animation of non-interoperable/discrete values. They take their starting values below 50% timing function progress, and end values above</del>
1390-
<li><del>Dynamic changes to animation properties/keyframes. Tab to propose resolution. (<a href="https://www.w3.org/Bugs/Public/show_bug.cgi?id=14713">Bug 14713</a>)
1391-
<li><del>Negative animation-delay values apply against the active duration of the animation i.e. (animation-duration*animation-iteration-count). The delay can thus swallow iterations for which no iteration event will be fired. The start/end events are still fired. Even when delay == (-1*active_duration)
1392-
<li><del>Fire animation start/end events when animation-duration is zero, with 0 elapsedTime
1393-
<li><del>If animation-iteration-count is infinite and duration is 0, treat the iteration-count as if it was finite and run a 0s second (option A in <a href="http://lists.w3.org/Archives/Public/www-style/2014Sep/0056.html">Brian's mail</a>)
1394-
<li><del>If an animation with a negative animation delay is initially paused, the start event still fires
1390+
<li><del>Dynamic changes to animation properties/keyframes. Tab to propose resolution. (<a href="https://www.w3.org/Bugs/Public/show_bug.cgi?id=14713">Bug 14713</a>)</del>
1391+
<li><del>Negative animation-delay values apply against the active duration of the animation i.e. (animation-duration*animation-iteration-count). The delay can thus swallow iterations for which no iteration event will be fired. The start/end events are still fired. Even when delay == (-1*active_duration)</del>
1392+
<li><del>Fire animation start/end events when animation-duration is zero, with 0 elapsedTime</del>
1393+
<li><del>If animation-iteration-count is infinite and duration is 0, treat the iteration-count as if it was finite and run a 0s second (option A in <a href="http://lists.w3.org/Archives/Public/www-style/2014Sep/0056.html">Brian's mail</a>)</del>
1394+
<li><del>If an animation with a negative animation delay is initially paused, the start event still fires</del>
13951395
</ul>
13961396

13971397
<li>2012-10-29 minutes
13981398
<ul>
1399-
<li><del>Change the animation properties to be dynamically changeable
1400-
<li><del>@keyframes can be dynamically changed
1399+
<li><del>Change the animation properties to be dynamically changeable</del>
1400+
<li><del>@keyframes can be dynamically changed</del>
14011401
<li><del>When you encounter duplicate animations names, last one wins.</del>
14021402
<li><del>Make *animations* transition *all* properties. Unless otherwise specified, discrete properties take their starting values below 50% timing function progress, and end values above 50% timing function progress.</del>
14031403
</ul>
14041404
<li>2012-12-12 minutes and intermediate comments <del>and 2012-12-19 minutes</del>
14051405
<ul>
1406-
<li><del>Animations only run if they contain at least one valid keyframe rule (<a href="https://www.w3.org/Bugs/Public/show_bug.cgi?id=15251">Bug</a>)
1406+
<li><del>Animations only run if they contain at least one valid keyframe rule (<a href="https://www.w3.org/Bugs/Public/show_bug.cgi?id=15251">Bug</a>)</del>
14071407
<li><del>When an element changes from display:none to display: non-none, animations start immediately (<a href="https://www.w3.org/Bugs/Public/show_bug.cgi?id=14785">Bug</a>)</del>
1408-
<li><del>An initially-paused animation is still started (fires start events etc.) (<a href="https://www.w3.org/Bugs/Public/show_bug.cgi?id=14774">Bug</a>)
1408+
<li><del>An initially-paused animation is still started (fires start events etc.) (<a href="https://www.w3.org/Bugs/Public/show_bug.cgi?id=14774">Bug</a>)</del>
14091409
<li><del>Animations can be paused during their delay phase, which freezes the remaining delay to be applied after it unpauses (<a href="https://www.w3.org/Bugs/Public/show_bug.cgi?id=14774">Bug</a>)</del>
14101410
<li><del>animation-play-state has the same list behavior as the other animation properties, matching the length of animation-name (<a href="https://www.w3.org/Bugs/Public/show_bug.cgi?id=14786">Bug</a>)</del>
14111411
</ul>

css-animations-2/Overview.bs

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ ED: https://drafts.csswg.org/css-animations-2/
2727
TR: https://www.w3.org/TR/css-animations-2/
2828
Editor: L. David Baron, Google https://www.google.com/, https://dbaron.org/, w3cid 15393
2929
Editor: Brian Birtles, Invited Expert, brian@birchill.co.jp, w3cid 43194
30-
<!-- !Issues List: <a href="https://www.w3.org/Bugs/Public/buglist.cgi?component=Animations&list_id=36653&product=CSS&query_format=advanced&resolution=---">In Bugzilla</a> -->
30+
<!-- !Issues List: <a href="https://www.w3.org/Bugs/Public/buglist.cgi?component=Animations&list_id=36653&product=CSS&query_format=advanced&resolution=---">In Bugzilla</a> -->
3131
3232
Abstract: This CSS module describes a way for authors to animate the values of CSS properties over time, using keyframes. The behavior of these keyframe animations can be controlled by specifying their duration, number of repeats, and repeating behavior.
3333
Ignored Vars: auto-rewind

css-conditional-3/Overview.bs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1015,7 +1015,7 @@ The following (non-editorial) changes were made to this specification since the
10151015
(<a href="https://github.com/w3c/csswg-drafts/issues/5697">Issue 5697</a>)
10161016
<blockquote>
10171017
<p>Conditional group rules are allowed <ins>wherever style rules are allowed
1018-
(</ins>at the top-level of a style sheet, <del>and inside</del> <ins>as well as within</del>
1018+
(</ins>at the top-level of a style sheet, <del>and inside</del> <ins>as well as within</ins>
10191019
other conditional group rules<ins>)</ins>.
10201020
CSS processors must process such rules as described above.
10211021

css-overflow-3/Overview.bs

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Status Text:
2525
significantly more complete and correct than previous working drafts
2626
or than [[CSS2]],
2727
but a few questions and issues remain open.
28-
''overflow: clip' and 'overflow-clip-margin' are rather new,
28+
''overflow: clip'' and 'overflow-clip-margin' are rather new,
2929
and lack implementation experience.
3030
'text-overflow' is stable,
3131
is unchanged form its earlier definition in [[CSS-UI-3]].
@@ -532,7 +532,7 @@ Managing Overflow: the 'overflow-x', 'overflow-y', and 'overflow' properties</h3
532532
The ''overflow/scroll'', ''overflow/auto'', and ''overflow/hidden'' values
533533
are known as the <dfn export lt="scrollable overflow value">scrollable values</dfn> of 'overflow'.
534534
The ''overflow/visible'' and ''overflow/clip'' values
535-
are known as the <dfn export lt="scrollable overflow value">non-scrollable values</dfn>.
535+
are known as the <dfn export lt="non-scrollable overflow value">non-scrollable values</dfn>.
536536

537537
The ''visible''/''overflow/clip'' values of 'overflow'
538538
compute to ''overflow/auto''/''hidden'' (respectively)

css-overflow-4/Overview.bs

-1
Original file line numberDiff line numberDiff line change
@@ -1087,7 +1087,6 @@ Fragmentation of Overflow: the 'continue' property</h3>
10871087
</tr>
10881088
</table>
10891089

1090-
</figure>
10911090
</div>
10921091

10931092
Content that is “not rendered” due to ''continue: discard''

css-overflow-5/Overview.bs

+1-1
Original file line numberDiff line numberDiff line change
@@ -783,7 +783,7 @@ Paginated overflow</h3>
783783
or the 'continue' property as described here.
784784

785785
<h3 id="fragment-overflow">
786-
Fragmented Overflow</h2>
786+
Fragmented Overflow</h3>
787787

788788
This section introduces and defines the meaning of
789789
the ''continue/fragments'' value of the 'continue' property.

css-transforms-1/Overview.bs

+2-2
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ The 'transform-origin' Property {#transform-origin-property}
418418

419419
<pre class='propdef'>
420420
Name: transform-origin
421-
Value: &nbsp;&nbsp;[ left | center | right | top | bottom | <<length-percentage>> ]<br> | <br>&nbsp;&nbsp;[ left | center | right | <<length-percentage>> ]<br>&nbsp;&nbsp;[ top | center | bottom | <<length-percentage>> ] <<length>>?<br> |<br>&nbsp;&nbsp;[[ center | left | right ] && [ center | top | bottom ]] <<length>>?
421+
Value: &nbsp;&nbsp;[ left | center | right | top | bottom | <<length-percentage>> ]<br> | <br>&nbsp;&nbsp;[ left | center | right | <<length-percentage>> ]<br>&nbsp;&nbsp;[ top | center | bottom | <<length-percentage>> ] <<length>>?<br> |<br>&nbsp;&nbsp;[ [ center | left | right ] && [ center | top | bottom ] ] <<length>>?
422422
Initial: 50% 50%
423423
Applies to: [=transformable elements=]
424424
Inherited: no
@@ -773,7 +773,7 @@ matrix
773773
<dd><pre>
774774
transform
775775
| transform comma-wsp? transforms
776-
</dd></pre>
776+
</pre></dd>
777777
<dd>
778778
<pre class='railroad'>
779779
Choice:

css-transitions-1/Overview.bs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1150,7 +1150,7 @@ The different types of transition events that can occur are:
11501150
an {{TransitionEvent/elapsedTime}} equal to the absolute value of the
11511151
delay capped to the 'transition-duration' of the animation. That is,
11521152
the elapsed time is equal to
1153-
<code>min(max(-'transition-delay', 0), 'transition-duration'</a>)</code>.
1153+
<code>min(max(-'transition-delay', 0), 'transition-duration')</code>.
11541154
<ul>
11551155
<li>Bubbles: Yes</li>
11561156
<li>Cancelable: No</li>

css-transitions-2/Overview.bs

-3
Original file line numberDiff line numberDiff line change
@@ -688,9 +688,6 @@ No new security considerations have been reported on this specification.
688688
(the transitions are canceled
689689
and removed from the set of completed transitions).</li>
690690

691-
</li>
692-
693-
694691
</ul>
695692

696693
<h2 id="issues-common">Issues commonly raised as issues with previous levels</h2>

0 commit comments

Comments
 (0)