
This class will be used in the algorithms for the navigate event firing algorithms to populate the destination field of the NavigateEvent.
11 lines
377 B
Text
11 lines
377 B
Text
// https://html.spec.whatwg.org/multipage/nav-history-apis.html#the-navigationdestination-interface
|
|
[Exposed=Window, UseNewAKString]
|
|
interface NavigationDestination {
|
|
readonly attribute USVString url;
|
|
readonly attribute DOMString key;
|
|
readonly attribute DOMString id;
|
|
readonly attribute long long index;
|
|
readonly attribute boolean sameDocument;
|
|
|
|
any getState();
|
|
};
|