// 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 UpdateDOMCallback? callback = null); }; callback UpdateDOMCallback = Promise (); [Exposed=Window] interface ViewTransition { undefined skipTransition(); readonly attribute Promise finished; readonly attribute Promise ready; readonly attribute Promise domUpdated; };