NavigationHistoryEntry.idl 455 B

12345678910111213141516
  1. #import <DOM/EventHandler.idl>
  2. #import <DOM/EventTarget.idl>
  3. // https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigationtype
  4. [Exposed=Window]
  5. interface NavigationHistoryEntry : EventTarget {
  6. readonly attribute USVString? url;
  7. readonly attribute DOMString key;
  8. readonly attribute DOMString id;
  9. readonly attribute long long index;
  10. readonly attribute boolean sameDocument;
  11. any getState();
  12. attribute EventHandler ondispose;
  13. };