Bug 1668530 Comment 1 Edit History

Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.

To get started with this, we will want to investigate what's causing the download to fail when the browser blocks mixed content. There are two places we can start debugging:

• When a browser download is stopped, we probably are signaling somewhere to end the download at: https://searchfox.org/mozilla-central/rev/1ed1bb14eed9b3f27a94513387608436ea74c247/dom/webbrowserpersist/nsWebBrowserPersist.cpp#892-894 . So it might be helpful to follow what happens when this is called. 
• In addition, it would be useful to get a stack trace by setting a breakpoint in [EndDownload](https://searchfox.org/mozilla-central/rev/1ed1bb14eed9b3f27a94513387608436ea74c247/dom/webbrowserpersist/nsWebBrowserPersist.cpp#2319)
To get started with this, we will want to investigate what's causing the download to fail when the browser blocks mixed content. There are two places we can start debugging:

• When a browser download is stopped, we probably are signaling somewhere to end the download at: https://searchfox.org/mozilla-central/rev/1ed1bb14eed9b3f27a94513387608436ea74c247/dom/webbrowserpersist/nsWebBrowserPersist.cpp#892-894 . So it might be helpful to follow what happens when this is called. 
• In addition, it would be useful to get a stack trace by setting a breakpoint in [EndDownload](https://searchfox.org/mozilla-central/rev/1ed1bb14eed9b3f27a94513387608436ea74c247/dom/webbrowserpersist/nsWebBrowserPersist.cpp#2319) (this will likely provide more useful results)

Back to Bug 1668530 Comment 1