Closed
Description
Currently the spec says that createDocumentTransition also start the transition, with no other way to start a transition.
I'm opening an issue here to decide, since we oscillated a little bit on this. The other alternative is createDocumentTransition just creates a transition object which can then be started at a later time via something like transition.start
or transition.prepare
.
To draw a parallel with web animations, I think it supports both Element.animate()
, and animation = new Animation(...); animation.play()
. Should this API also support both?