Closed
Bug 116180
Opened 24 years ago
Closed 24 years ago
Mozilla displays empty page instead of error message
Categories
(Core :: Networking: HTTP, defect)
Tracking
()
VERIFIED
WORKSFORME
People
(Reporter: golam, Assigned: darin.moz)
References
()
Details
From Bugzilla Helper:
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:0.9.6+)
Gecko/20011209
BuildID: 2001120908
Mozilla output is: <html><body></body></html>
IE on this page displays rather complicated error page with banners, images and
so on.
Reproducible: Always
Steps to Reproduce:
1. Open url in IE
2. Open url in Mozilla
Actual Results: empty page
Expected Results: error message
Confirming on 2001121909, Win95. The problem isn't on error page html code
itself: if you save it locally with IE, Mozilla can render it.
Status: UNCONFIRMED → NEW
Ever confirmed: true
| Assignee | ||
Comment 2•24 years ago
|
||
a packet trace shows that the server is sending garbage before the actual HTML.
looks like:
HTTP/1.1 200 OK
<headers>
Transfer-Encoding: chunked
<headers>
<chunk-size>
<junk>
<chunk-size>
<junk>
<HTML document>
0
the <junk> seems to be confusing the parser.
-> parser... but this is probably an evangelism bug.
Assignee: darin → harishd
Component: Networking: HTTP → Parser
QA Contact: tever → moied
Darin: Parser would emit <html><body></body></html> only if an OnDataAvailable()
is not fired. So this can't be a parser bug.
I just confirmed that an OnDataAvailable was not fired on the parser.
--> darin ;-)
Assignee: harishd → darin
Updated•24 years ago
|
Component: Parser → Networking: HTTP
| Assignee | ||
Comment 5•24 years ago
|
||
just tested w/ 2002012121 linux build, and i can no longer reproduce the
problem. perhaps the website fixed itself. at any rate, marking WORKSFORME.
Status: NEW → RESOLVED
Closed: 24 years ago
Resolution: --- → WORKSFORME
Marking verified WFM with build ID 20020205 on win2k.
Status: RESOLVED → VERIFIED
You need to log in
before you can comment on or make changes to this bug.
Description
•