diff --git a/css-view-transitions-1/Overview.bs b/css-view-transitions-1/Overview.bs index 00162a54bb3e..87c42ed6b5bf 100644 --- a/css-view-transitions-1/Overview.bs +++ b/css-view-transitions-1/Overview.bs @@ -1458,6 +1458,10 @@ urlPrefix: https://wicg.github.io/navigation-api/; type: interface; 1. If |namedElements|[|transitionName|] does not [=map/exist=], then set |namedElements|[|transitionName|] to a new [=captured element=] struct. + Note: We intentionally add this struct to the end of this ordered map. + This implies than names which only exist in the new DOM (entry animations) will be painted on top of names only in the old DOM (exit animations) and names in both DOMs (paired animations). + This might not be the right layering for all cases. See issue 8941. + 1. Set |namedElements|[|transitionName|]'s [=new element=] to |element|. @@ -1944,6 +1948,7 @@ Changes from issue 9512. * Add a note about why 'view-transition-name' should be animatable. * `view-transition-name: auto` should be an invalid value. See issue 9639. +* Add note to explain paint order for entry animations. See issue 9672.

Changes from 2022-05-25 Working Draft