-
Notifications
You must be signed in to change notification settings - Fork 2.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unhandled rejection check causes errors in Firefox #1623
Comments
I'm also experiencing this with version 3.7.0. |
huh I had no idea firefox does this |
@jryans @schleumer can you please try 3.7.1 ? |
The issue still appears in 3.7.1 as well, which makes sense to me, as it still runs the problematic iframe approach. |
I'm having the same issue in 3.7.1 and have to downgrade to 3.5.5 for now. |
As described here, Bluebird creates an I suspect that Firefox destroys the window of the Can't we capture the original value of |
The result of this bug is that the error |
This seems consistent enough with the HTML spec (which I am not familiar with but am trying to check this against, sorry for any misinterpretation).
The nested browsing context is what is returned by |
I was experiencing this bug as well and the newly released version 3.7.2 fixed it for me. |
Yes, f880445 should indeed fix the issue, thanks! |
I recently upgraded from Bluebird 3.5.5 to 3.7.0, which happens to pull in the unhandled rejection handling from 60ef7a0 (first added in 3.6.0).
The path which adds an
iframe
, grabssetTimeout
from it, then removes it from the document does not appear to work in Firefox 71. Instead, calling thissetTimeout
fails with anNS_ERROR_NOT_INITIALIZED
exception.(As an aside, I am curious why you want to pull
setTimeout
from a throwaway frame like this... Why not just use the main document?)For now, I will revert back to 3.5.5.
The text was updated successfully, but these errors were encountered: