You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
However, canRespond = false and cancelable = false only happens for cross-document browser UI navigations. In those cases, as with all cross-document navigations, our current plan is to leave the promise unsettled. That might change in #95, but for now the spec seems broken.
The text was updated successfully, but these errors were encountered:
Previously, cancelation of queued-up traversals was ignored. Now it triggers the appropriate finalization algorithm.
The introduction of a "fired navigate event" boolean on the ongoing app history API navigation struct also ensures that we don't fire navigateerror on cases where we never fire the navigate event.
Also closes#141 while we're there.
Previously, cancelation of queued-up traversals was ignored. Now it triggers the appropriate finalization algorithm.
The introduction of a "fired navigate event" boolean on the ongoing app history API navigation struct also ensures that we don't fire navigateerror on cases where we never fire the navigate event.
Also closes#141 while we're there.
Previously, cancelation of queued-up traversals was ignored. Now it triggers the appropriate finalization algorithm.
The introduction of a "fired navigate event" boolean on the ongoing app history API navigation struct also ensures that we don't fire navigateerror on cases where we never fire the navigate event.
Also closes#141 while we're there.
https://wicg.github.io/app-history/#navigate-event-firing step 8 will bail out if canRespond is false and cancelable is false. As part of that bailout, it will clean up the ongoing navigation, and resolve the promise.
However, canRespond = false and cancelable = false only happens for cross-document browser UI navigations. In those cases, as with all cross-document navigations, our current plan is to leave the promise unsettled. That might change in #95, but for now the spec seems broken.
The text was updated successfully, but these errors were encountered: