NavigationDestination.idl 361 B

1234567891011
  1. // https://html.spec.whatwg.org/multipage/nav-history-apis.html#the-navigationdestination-interface
  2. [Exposed=Window]
  3. interface NavigationDestination {
  4. readonly attribute USVString url;
  5. readonly attribute DOMString key;
  6. readonly attribute DOMString id;
  7. readonly attribute long long index;
  8. readonly attribute boolean sameDocument;
  9. any getState();
  10. };