After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 326608 - Download appears to never finish when saving about:blank
Download appears to never finish when saving about:blank
Status: RESOLVED OBSOLETE
Product: epiphany
Classification: Core
Component: Downloads
git master
Other Linux
: Normal major
: ---
Assigned To: Epiphany Maintainers
Epiphany Maintainers
: 407939 (view as bug list)
Depends on: 457744
Blocks: 339809
 
 
Reported: 2006-01-11 14:58 UTC by spark
Modified: 2009-12-14 08:11 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
[PATCH] Fix small downloads staying forever in the download manager (1.05 KB, patch)
2008-09-03 17:49 UTC, Diego Escalante Urrelo (not reading bugmail)
needs-work Details | Review

Description spark 2006-01-11 14:58:37 UTC
Noticed when looking at bug 325624, if you go to about:blank and go Save As, the file downloads but the downloads dialog remains with the entry 

"0%, Untitled 0 bytes of 0 bytes, Remaining: 00:00"

In case it's useful, the file downloaded is 118 bytes -- perhaps the downloader gets confused with stuff that's really small?
Comment 1 Christian Persch 2006-02-26 21:15:24 UTC
So in MozDownload::OnStateChange, we get a STATE_STOP | STATE_IS_NETWORK, which isn't passing our check for STATE_STOP && STATE_IS_NETWORK && STATE_IS_REQUEST...
Comment 2 Christian Persch 2006-04-10 19:06:18 UTC
Not a major problem, and I don't want to change download logic on branch.

We need to figure out how firefox handles this case.
Comment 3 spark 2006-04-11 13:54:04 UTC
Indeed, this is very much an edge case.
Comment 4 Christian Persch 2006-07-23 20:34:50 UTC
The same thing happens when saving other pages too if they finish fast... need to  fix this.
Comment 5 Diego Escalante Urrelo (not reading bugmail) 2007-01-08 09:16:50 UTC
From somewhere in the mozilla code:
http://lxr.mozilla.org/aviary101branch/source/toolkit/components/downloads/src/nsDownloadManager.cpp

2043 NS_IMETHODIMP
2044 nsDownload::OnStateChange(nsIWebProgress* aWebProgress,
2045                           nsIRequest* aRequest, PRUint32 aStateFlags,
2046                           nsresult aStatus)
2047 {
(...)
2067       // Files less than 1Kb shouldn't show up as 0Kb.
2068       if (mMaxBytes==0)
2069         mMaxBytes = 1;
2070       mCurrBytes = mMaxBytes;
2071       mPercentComplete = 100;
(...)
2136   }

How to get the magical mMaxBytes is a question I can't answer.
Comment 6 Diego Escalante Urrelo (not reading bugmail) 2007-04-25 00:16:53 UTC
*** Bug 407939 has been marked as a duplicate of this bug. ***
Comment 7 Diego Escalante Urrelo (not reading bugmail) 2008-09-03 17:21:43 UTC
What would break if I do?:

-       if (((aStateFlags & STATE_IS_REQUEST) &&
-            (aStateFlags & STATE_IS_NETWORK) &&
+       if (((aStateFlags & STATE_IS_NETWORK) &&
             (aStateFlags & STATE_STOP)) ||
            aStateFlags == STATE_STOP)
        {

It seems to work here, and it didn't break anything.
Comment 8 Diego Escalante Urrelo (not reading bugmail) 2008-09-03 17:49:04 UTC
Created attachment 117948 [details] [review]
[PATCH] Fix small downloads staying forever in the download manager


Not requiring STATE_IS_REQUEST in MozDownload::OnStateChange of
MozDownload.cpp. Doesn't seem to break anything at all.
Also, include a minor indentation fix.
---
 embed/mozilla/MozDownload.cpp |    7 +++----
 1 files changed, 3 insertions(+), 4 deletions(-)
Comment 9 Diego Escalante Urrelo (not reading bugmail) 2008-09-03 17:51:34 UTC
I have tried it a bit more and only thing against seems to be that downloads finishing too quick don't pop the window... for example about:blank and the google logo in its homepage. I wouldn't consider it a problem.
Testing is appreciated.
Comment 10 Diego Escalante Urrelo (not reading bugmail) 2008-09-07 17:06:59 UTC
Ok, turns out that the notification window is not popping for downloads that finish too fast now. Perhaps the patch is not so correct.
Maybe the ff idea of counting bytes could be tried.
Comment 11 Christian Persch 2009-04-10 18:22:49 UTC
Reality check.
Comment 12 Diego Escalante Urrelo (not reading bugmail) 2009-12-14 08:11:42 UTC
works in ephy master.