chromium/third_party/blink/renderer/core/navigation_api/navigation_history_entry.idl

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

// https://wicg.github.io/navigation-api/
[
  Exposed=Window
] interface NavigationHistoryEntry : EventTarget {
  readonly attribute DOMString key;
  readonly attribute DOMString id;
  readonly attribute USVString? url;
  readonly attribute long long index;
  readonly attribute boolean sameDocument;

  any getState();

  // attribute EventHandler onnavigateto;
  // attribute EventHandler onnavigatefrom;
  // attribute EventHandler onfinish;
  attribute EventHandler ondispose;
};