You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`auto` resolves to either the element's ID, or to a unique identifier
that is stable for the duration of the transition and is not web-observable.
Resolution: w3c#8320 (comment)Closesw3c#8320
In addition to the existing values, the 'view-transition-name' also accepts an <dfn for=view-transition-name type=value>auto</dfn> keyword.
763
+
To resolve the [=used value=] of 'view-transition-name' for |element|:
764
+
1. Let |computed| be the [=computed value=] of 'view-transition-name'.
765
+
1. If |computed| is <css>none</css>, return null.
766
+
1. If |computed| is a <<custom-ident>>, return |computed|.
767
+
1. Assert: |computed| is <css>auto</css>.
768
+
1. If |element| has an associated [=Element/id=], then return |element|'s [=Element/id=].
769
+
1. Return a unique string, which is not a <<custom-ident>>. This string should remain consistent at least for the lifetime of |element|'s [=node document=]'s [=active view transition=].
770
+
771
+
Note: this string is not web-observable, and is used for addressing the element in internal algorithms.
759
772
760
773
*This section is non-normative.*
761
774
@@ -1170,6 +1183,8 @@ When [[css-view-transitions-1#style-transition-pseudo-elements-algorithm|updatin
1170
1183
1. [=Multiply=] |transform| by the inverse matrix of |groupContainerElement|'s [=transform from snapshot containing block=].
0 commit comments