chromium/third_party/blink/renderer/core/view_transition/page_reveal_event.idl

// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// https://html.spec.whatwg.org/multipage/nav-history-apis.html#pagerevealevent
[
  Exposed=Window,
  RuntimeEnabled=PageRevealEvent
] interface PageRevealEvent : Event {
  constructor(DOMString type, optional PageRevealEventInit eventInitDict = {});
  [RuntimeEnabled=ViewTransitionOnNavigation] readonly attribute ViewTransition? viewTransition;
};