mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-09 17:31:47 +09:00
Checking NS_BINDING_ABORTED to avoid dispatching navigate event
https://github.com/MoonchildProductions/moebius/pull/302
This commit is contained in:
parent
28ab3c0e0d
commit
e7a9064f98
1 changed files with 5 additions and 1 deletions
|
|
@ -2501,7 +2501,11 @@ DebuggerProgressListener.prototype = {
|
|||
if (isWindow && isStop) {
|
||||
// Don't dispatch "navigate" event just yet when there is a redirect to
|
||||
// about:neterror page.
|
||||
if (request.status != Cr.NS_OK) {
|
||||
// Navigating to about:neterror will make `status` be something else than NS_OK.
|
||||
// But for some error like NS_BINDING_ABORTED we don't want to emit any `navigate`
|
||||
// event as the page load has been cancelled and the related page document is going
|
||||
// to be a dead wrapper.
|
||||
if (request.status != Cr.NS_OK && request.status != Cr.NS_BINDING_ABORTED) {
|
||||
// Instead, listen for DOMContentLoaded as about:neterror is loaded
|
||||
// with LOAD_BACKGROUND flags and never dispatches load event.
|
||||
// That may be the same reason why there is no onStateChange event
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue