mirror of
https://github.com/servo/servo.git
synced 2025-06-25 09:34:32 +01:00
18 lines
626 B
Text
18 lines
626 B
Text
// GENERATED CONTENT - DO NOT EDIT
|
|
// Content was automatically extracted by Reffy into webref
|
|
// (https://github.com/w3c/webref)
|
|
// Source: CSS View Transitions Module Level 1 (https://drafts.csswg.org/css-view-transitions-1/)
|
|
|
|
partial interface Document {
|
|
ViewTransition startViewTransition(optional UpdateCallback? updateCallback = null);
|
|
};
|
|
|
|
callback UpdateCallback = Promise<any> ();
|
|
|
|
[Exposed=Window]
|
|
interface ViewTransition {
|
|
readonly attribute Promise<undefined> updateCallbackDone;
|
|
readonly attribute Promise<undefined> ready;
|
|
readonly attribute Promise<undefined> finished;
|
|
undefined skipTransition();
|
|
};
|