Skip to content

Commit c4bc475

Browse files
authored
[css-transitions-1][editorial] Added WPTs (#13133)
1 parent b6529a4 commit c4bc475

File tree

1 file changed

+222
-0
lines changed

1 file changed

+222
-0
lines changed

css-transitions-1/Overview.bs

Lines changed: 222 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ Abstract: CSS Transitions allows property changes in CSS values to occur smoothl
2121
Status Text: <strong>This document</strong> is expected to be relatively close to last call. While some issues raised have yet to be addressed, new features are extremely unlikely to be considered for this level.
2222
Ignored Vars: x1, x2, y1, y2
2323
Link Defaults: css-transforms (property) transform
24+
WPT Path Prefix: css/css-transitions/
25+
WPT Display: open
2426
</pre>
2527
<style type="text/css">
2628
div.prod { margin: 1em 2em; }
@@ -123,6 +125,13 @@ Introduction {#introduction}
123125
This document introduces new CSS features to enable <em>implicit transitions</em>, which describe how CSS properties can be made to change smoothly from one value to another over a given duration.
124126
</p>
125127

128+
<wpt title="crashes">
129+
crashtests/delete-image-set.html
130+
crashtests/size-container-transition-crash.html
131+
crashtests/transition-during-style-attr-mutation.html
132+
crashtests/transition-large-word-spacing-001.html
133+
</wpt>
134+
126135
Value Definitions {#values}
127136
-----------------
128137

@@ -231,6 +240,29 @@ Transitions</h2>
231240
([[WCAG20]]).
232241
</p>
233242

243+
<wpt>
244+
animations/animate-with-color-mix.html
245+
animations/color-transition-premultiplied.html
246+
animations/text-shadow-composition.html
247+
animations/text-shadow-interpolation.html
248+
animations/vertical-align-composition.html
249+
animations/vertical-align-interpolation.html
250+
animations/z-index-interpolation.html
251+
idlharness.html
252+
inherit-background-color-transition.html
253+
inheritance.html
254+
properties-value-001.html
255+
properties-value-002.html
256+
properties-value-003.html
257+
properties-value-implicit-001.html
258+
retargetted-transition-with-box-sizing.html
259+
shadow-root-insertion.html
260+
transition-base-response-001.html
261+
transition-base-response-002.html
262+
transition-base-response-003.html
263+
transition-in-iframe-001.html
264+
</wpt>
265+
234266
<span id="the-transition-property-property-">The 'transition-property' Property</span> {#transition-property-property}
235267
----------------------------------------------------------------------------------------------------------------------
236268

@@ -248,6 +280,65 @@ Transitions</h2>
248280
Animation type: not animatable
249281
</pre>
250282

283+
<wpt>
284+
animations/move-after-transition.html
285+
animations/transition-end-event-shorthands.html
286+
parsing/transition-property-computed.html
287+
parsing/transition-property-invalid.html
288+
parsing/transition-property-valid.html
289+
pseudo-element-transform.html
290+
pseudo-elements-001.html
291+
pseudo-elements-002.html
292+
transition-background-position-with-edge-offset.html
293+
transition-property-001.html
294+
transition-property-002.html
295+
transition-property-003-manual.html
296+
transition-property-004-manual.html
297+
transition-property-005-manual.html
298+
transition-property-006-manual.html
299+
transition-property-007-manual.html
300+
transition-property-008-manual.html
301+
transition-property-009-manual.html
302+
transition-property-010-manual.html
303+
transition-property-011-manual.html
304+
transition-property-012-manual.html
305+
transition-property-013-manual.html
306+
transition-property-014-manual.html
307+
transition-property-015-manual.html
308+
transition-property-016-manual.html
309+
transition-property-017-manual.html
310+
transition-property-018-manual.html
311+
transition-property-019-manual.html
312+
transition-property-020-manual.html
313+
transition-property-021-manual.html
314+
transition-property-022-manual.html
315+
transition-property-023-manual.html
316+
transition-property-024-manual.html
317+
transition-property-025-manual.html
318+
transition-property-026-manual.html
319+
transition-property-027-manual.html
320+
transition-property-028-manual.html
321+
transition-property-029-manual.html
322+
transition-property-030-manual.html
323+
transition-property-031-manual.html
324+
transition-property-032-manual.html
325+
transition-property-033-manual.html
326+
transition-property-034-manual.html
327+
transition-property-035-manual.html
328+
transition-property-036-manual.html
329+
transition-property-037-manual.html
330+
transition-property-038-manual.html
331+
transition-property-039-manual.html
332+
transition-property-040-manual.html
333+
transition-property-041-manual.html
334+
transition-property-042-manual.html
335+
transition-property-043-manual.html
336+
transition-property-044-manual.html
337+
transition-property-045-manual.html
338+
transition-test.html
339+
transition-zero-duration-with-delay.html
340+
</wpt>
341+
251342
<div class="prod">
252343
<dfn type id="single-transition-property">&lt;single-transition-property&gt;</dfn> = ''transition-property/all'' | <<custom-ident>>
253344
</div>
@@ -322,6 +413,19 @@ Transitions</h2>
322413
Computed value: list, each item a duration
323414
Animation type: not animatable
324415
</pre>
416+
417+
<wpt>
418+
infinite-duration-crash.html
419+
parsing/transition-duration-computed.html
420+
parsing/transition-duration-invalid.html
421+
parsing/transition-duration-valid.html
422+
transition-duration-001.html
423+
transition-duration-002-manual.html
424+
transition-duration-003-manual.html
425+
transition-duration-004-manual.html
426+
transition-duration-shorthand.html
427+
</wpt>
428+
325429
<p>
326430
This property specifies how long the transition from the old value to the new value should take. By default the value is ''0s'', meaning that the transition is immediate (i.e. there will be no animation). A negative value for 'transition-duration' renders the declaration invalid.
327431
</p>
@@ -354,6 +458,18 @@ Transitions</h2>
354458
Animation type: not animatable
355459
</pre>
356460

461+
<wpt>
462+
animations/transition-timing-function.html
463+
parsing/transition-timing-function-computed.html
464+
parsing/transition-timing-function-invalid.html
465+
parsing/transition-timing-function-valid.html
466+
transition-timing-function-002-manual.html
467+
transition-timing-function-003-manual.html
468+
transition-timing-function-004-manual.html
469+
transition-timing-function-005-manual.html
470+
transition-timing-function-006-manual.html
471+
transition-timing-function-010-manual.html
472+
</wpt>
357473

358474
<span id="the-transition-delay-property-">The 'transition-delay' Property</span> {#transition-delay-property}
359475
-------------------------------------------------------------------------------------------------------------
@@ -375,6 +491,16 @@ Transitions</h2>
375491
Animation type: not animatable
376492
</pre>
377493

494+
<wpt>
495+
parsing/transition-delay-computed.html
496+
parsing/transition-delay-invalid.html
497+
parsing/transition-delay-valid.html
498+
transition-delay-000-manual.html
499+
transition-delay-001.html
500+
transition-delay-002-manual.html
501+
transition-delay-003-manual.html
502+
</wpt>
503+
378504
<span id="the-transition-shorthand-property-">The 'transition' Shorthand Property</span> {#transition-shorthand-property}
379505
-------------------------------------------------------------------------------------------------------------------------
380506

@@ -390,6 +516,14 @@ Transitions</h2>
390516
Animation type: not animatable
391517
</pre>
392518

519+
<wpt>
520+
parsing/transition-computed.html
521+
parsing/transition-invalid.html
522+
parsing/transition-valid.html
523+
parsing/transition-shorthand.html
524+
transition-001.html
525+
</wpt>
526+
393527
<div class="prod">
394528
<dfn type id="single-transition">&lt;single-transition&gt;</dfn> = [ ''transition-property/none'' | <<single-transition-property>> ] || <<time>> || <<easing-function>> || <<time>>
395529
</div>
@@ -430,6 +564,10 @@ Starting of transitions {#starting}
430564
</span>
431565
</p>
432566

567+
<wpt>
568+
transitioncancel-003.html
569+
</wpt>
570+
433571
<p>
434572
Implementations must also maintain a set of
435573
<dfn export lt="completed transition">completed transitions</dfn>,
@@ -517,6 +655,10 @@ Starting of transitions {#starting}
517655
for a script API that depends on it.)
518656
</p>
519657

658+
<wpt>
659+
render-blocking/no-transition-from-ua-to-blocking-stylesheet.html
660+
</wpt>
661+
520662
<p>
521663
Since this specification does not define
522664
when a <a>style change event</a> occurs,
@@ -560,6 +702,12 @@ Starting of transitions {#starting}
560702
Animations.
561703
</p>
562704

705+
<wpt>
706+
after-change-style-inherited-try-fallback.html
707+
after-change-style-inherited.html
708+
animations/change-duration-during-transition.html
709+
</wpt>
710+
563711
<div class="note">
564712
<p>
565713
Note that this definition of the <a>after-change style</a>
@@ -928,6 +1076,32 @@ Starting of transitions {#starting}
9281076
style for declarative animations.
9291077
</p>
9301078

1079+
<wpt>
1080+
before-load-001.html
1081+
changing-while-transition-001.html
1082+
changing-while-transition-002.html
1083+
changing-while-transition-003.html
1084+
changing-while-transition-004.html
1085+
currentcolor-animation-001.html
1086+
disconnected-element-001.html
1087+
dynamic-root-element.html
1088+
historical.html
1089+
inherit-height-transition.html
1090+
non-rendered-element-001.html
1091+
non-rendered-element-002.html
1092+
properties-value-inherit-001.html
1093+
properties-value-inherit-002.html
1094+
properties-value-inherit-003.html
1095+
starting-of-transitions-001.html
1096+
root-color-transition.html
1097+
transition-after-animation-001.html
1098+
transition-remove-and-change-immediate.html
1099+
transition-reparented.html
1100+
transitions-retarget.html
1101+
zero-duration-multiple-transition.html
1102+
</wpt>
1103+
1104+
9311105
Faster reversing of interrupted transitions {#reversing}
9321106
--------------------------------------------------------
9331107

@@ -992,6 +1166,10 @@ Application of transitions {#application}
9921166
at the level defined for CSS Transitions in [[!CSS3CASCADE]].
9931167
</p>
9941168

1169+
<wpt>
1170+
transition-important.html
1171+
</wpt>
1172+
9951173
<p class="note">
9961174
Note that this means that computed values
9971175
resulting from CSS transitions
@@ -1088,6 +1266,10 @@ with changes to transitions.
10881266
Each event provides the name of the property the transition is
10891267
associated with as well as the duration of the transition.
10901268

1269+
<wpt>
1270+
transition-events-with-document-change.html
1271+
</wpt>
1272+
10911273
## Interface {{TransitionEvent}} ## {#interface-transitionevent}
10921274

10931275
The {{TransitionEvent}} interface provides specific contextual information
@@ -1111,6 +1293,10 @@ associated with transitions.
11111293
};
11121294
</pre>
11131295

1296+
<wpt>
1297+
transitionevent-interface.html
1298+
</wpt>
1299+
11141300
### Attributes ### {#interface-transitionevent-attributes}
11151301

11161302
: <code class='attribute-name'><dfn attribute for="TransitionEvent" id="Events-TransitionEvent-propertyName">propertyName</dfn></code>
@@ -1183,6 +1369,16 @@ The different types of transition events that can occur are:
11831369
<li>Cancelable: No</li>
11841370
<li>Context Info: propertyName, elapsedTime, pseudoElement</li>
11851371
</ul>
1372+
1373+
<wpt>
1374+
events-001.html
1375+
events-002.html
1376+
events-003.html
1377+
events-004.html
1378+
events-005.html
1379+
events-006.html
1380+
events-007.html
1381+
</wpt>
11861382
</dd>
11871383

11881384
<dt><dfn id=transitioncancel>transitioncancel</dfn></dt>
@@ -1203,6 +1399,11 @@ The different types of transition events that can occur are:
12031399
<li>Cancelable: No</li>
12041400
<li>Context Info: propertyName, elapsedTime, pseudoElement</li>
12051401
</ul>
1402+
1403+
<wpt>
1404+
transitioncancel-001.html
1405+
transitioncancel-002.html
1406+
</wpt>
12061407
</dd>
12071408
</dl>
12081409

@@ -1365,6 +1566,7 @@ dated 11 October 2018</a>:
13651566
* Removed trailing semicolon from <<single-transition-property>> syntax.
13661567
* Associated event definitions with their {{GlobalEventHandlers}} container.
13671568
* Added range definition notations to property values.
1569+
* Added Web Platform Tests coverage.
13681570
* Minor editorial fixes and improvements.
13691571

13701572
For more details on these changes, see the version control
@@ -1408,3 +1610,23 @@ Jasper St. Pierre,
14081610
Estelle Weyl,
14091611
and all the rest of the
14101612
<a href="http://lists.w3.org/Archives/Public/www-style/">www-style</a> community.</p>
1613+
1614+
<wpt title="Tests related to later levels of this specification">
1615+
allow-discrete-auto-inset.html
1616+
custom-property-and-allow-discrete.html
1617+
display-none-no-animations.html
1618+
idlharness-2.html
1619+
inert-while-transitioning-to-display-none.html
1620+
parsing/starting-style-parsing.html
1621+
parsing/transition-behavior.html
1622+
starting-style-adjustment.html
1623+
starting-style-cascade.html
1624+
starting-style-first-letter-crash.html
1625+
starting-style-name-defining-rules.html
1626+
starting-style-rule-basic.html
1627+
starting-style-rule-none.html
1628+
starting-style-rule-pseudo-elements.html
1629+
starting-style-size-container.html
1630+
transition-behavior.html
1631+
transition-behavior-events.html
1632+
</wpt>

0 commit comments

Comments
 (0)