diff --git a/source b/source index 524d49ec790..27a811f393e 100644 --- a/source +++ b/source @@ -4023,6 +4023,9 @@ a.setAttribute('href', 'https://example.com/'); // change the content attribute

The term PageTransitionEventInit : EventInit +

The PageRevealEvent interface
+ +
[Exposed=Window]
+interface PageRevealEvent : Event {
+  readonly attribute ViewTransition viewTransition;
+};
+ +
+ +

The viewTransition attribute getter steps + are: + +

    +
  1. Let viewTransition be this's relevant global object's + active document's active view transition.

  2. + +
  3. If viewTransition is non-null and its + is inbound cross-document view-transition is true, then return viewTransition; + Otherwise return null.

  4. +
+ +
+ +
The BeforeUnloadEvent interface
[Exposed=Window]
@@ -100369,7 +100397,7 @@ location.href = '#foo';
  • Fire an event named pagereveal at document's - relevant global object.

  • + relevant global object, using PageRevealEvent.

    Scrolling to a fragment
    @@ -138651,10 +138679,9 @@ INSERT INTERFACES HERE Fired at the Window when the page's session history entry stops being the active entry - - + pagereveal - Event + PageRevealEvent Window Fired at the Window when the page begins to render, for the first time after it has been initialized or reactivated.