blob: b2224f479364c68fdd2dd0887304909f944f48b0 [file] [log] [blame]
[
EnabledBySetting=NavigationAPIEnabled,
Exposed=Window
] interface NavigationCurrentEntryChangeEvent : Event {
constructor([AtomString] DOMString type, NavigationCurrentEntryChangeEventInit eventInitDict);
readonly attribute NavigationNavigationType? navigationType;
readonly attribute NavigationHistoryEntry from;
};
dictionary NavigationCurrentEntryChangeEventInit : EventInit {
NavigationNavigationType? navigationType = null;
required NavigationHistoryEntry from;
};