[css-view-transitions-2] A few minor edits - #9527
Conversation
* Specify paint holding * Fix missing |transition| var * Allow an empty list in the type descriptor
|
|
||
| Note: The process continues in [=setup view transition=], via [=perform pending transition operations=]. | ||
|
|
||
| 1. The user agent should display the currently displayed frame until |newDocument| is [=revealed=], or until its [=active view transition=]'s [=ViewTransition/phase=] is "`done`". |
There was a problem hiding this comment.
Trying to reason about why we need "or until its [=active view transition=]'s [=ViewTransition/phase=] is "done". Is this for the case where the transition is skipped before reveal? I think that can only happen in the reveal algorithm here anyway which is right before we hit "revealed".
There was a problem hiding this comment.
If the document navigates away or an SPA nav is initiated.
There was a problem hiding this comment.
Ah ok cool. Slight suggestion on wording:
The user agent should display the currently displayed frame until either:
- |newDocument| is [=revealed=]
- its [=active view transition=]'s [=ViewTransition/phase=] is "
done"
Non-normative note to document the cases you mentioned for the second condition.
|
Leaving a note about activating the transition after dispatching the reveal event. So authors have a script hook to set up VT names. |
Closes #8888