| [ |
| GenerateIsReachable=Impl, |
| JSCustomMarkFunction, |
| EnabledBySetting=NavigationAPIEnabled, |
| Exposed=Window |
| ] interface NavigateEvent : Event { |
| constructor([AtomString] DOMString type, NavigateEventInit eventInitDict); |
| |
| readonly attribute NavigationNavigationType navigationType; |
| readonly attribute NavigationDestination destination; |
| readonly attribute boolean canIntercept; |
| readonly attribute boolean userInitiated; |
| readonly attribute boolean hashChange; |
| readonly attribute AbortSignal signal; |
| readonly attribute DOMFormData? formData; |
| readonly attribute DOMString? downloadRequest; |
| readonly attribute any info; |
| readonly attribute Element? sourceElement; |
| [EnabledBySetting=UAVisualTransitionDetectionEnabled] readonly attribute boolean hasUAVisualTransition; |
| |
| [CallWith=RelevantDocument] undefined intercept(optional NavigationInterceptOptions options = {}); |
| [CallWith=RelevantDocument] undefined scroll(); |
| }; |
| |
| dictionary NavigateEventInit : EventInit { |
| NavigationNavigationType navigationType = "push"; |
| required NavigationDestination destination; |
| boolean canIntercept = false; |
| boolean userInitiated = false; |
| boolean hashChange = false; |
| required AbortSignal signal; |
| DOMFormData? formData = null; |
| DOMString? downloadRequest = null; |
| any info; |
| Element? sourceElement = null; |
| [EnabledBySetting=UAVisualTransitionDetectionEnabled] boolean hasUAVisualTransition = false; |
| }; |
| |
| dictionary NavigationInterceptOptions { |
| NavigationInterceptHandler handler; |
| NavigationFocusReset focusReset; |
| NavigationScrollBehavior scroll; |
| }; |
| |
| enum NavigationFocusReset { |
| "after-transition", |
| "manual" |
| }; |
| |
| enum NavigationScrollBehavior { |
| "after-transition", |
| "manual" |
| }; |