Closed
Bug 43958
Opened 25 years ago
Closed 25 years ago
when loading my.netscape.com developer.netscape.com they come up blank
Categories
(Core :: DOM: Core & HTML, defect, P1)
Core
DOM: Core & HTML
Tracking
()
VERIFIED
FIXED
People
(Reporter: jeziorek, Assigned: rusty.lynch)
References
()
Details
(Keywords: smoketest, top100, Whiteboard: [nsbeta2+])
Attachments
(1 file)
488 bytes,
text/html
|
Details |
-start browser
-enter in the location bar my.netscape.com or developer.netscape.com
-they come up blank
-they should load the pages
linux comm. 2000-06-27-08-M17
Comment 1•25 years ago
|
||
I see this on my Macintosh debug build as well (at least for my.netscape.com).
OS: Linux → All
Hardware: PC → All
Comment 2•25 years ago
|
||
note - 43961 is a testcase for developer.netscape.com, in the js engine.
Comment 4•25 years ago
|
||
I can confirm with Mac OS 9 2000062708. Seems JS related. Should we
move to JavaScript engine?
Keywords: top100
Comment 5•25 years ago
|
||
ok, i accept my bug is a dupe. moving to dom0, moving my testcase for dev.ns.com
over to here
Component: Browser-General → DOM Level 0
Comment 6•25 years ago
|
||
ok, i accept my bug is a dupe. moving to dom0, moving my testcase for dev.ns.com
over to here
Assignee: asa → jst
QA Contact: doronr → desale
Comment 7•25 years ago
|
||
Comment 8•25 years ago
|
||
The contents of the JS page are:
document.write('<a href="http://ads.web.aol.com/link/64000755/html?
badsc=B0kf0FHrevJT4QE7FgKaAuGrAi2nB3bgvu3sP3XtLmWLQZBcuOhBHPfWtyVn1HBdt1iaJMkxDp
T8nqHFLt57cuKTEV1uDf4OvbzQ-EfL_mK7P0fLWYxRbQiOc8zBJ5BaEAXZ-ayIDRn3w$"><img
src="http://ads.web.aol.com/content/B0/0/dBLtps60oX26difIuGaamMbMKHULd0ytAMyHcK7
14unVmtNj0BUfeh9ZQ6J4EUR6Kt90RwaIDx8KuESIkFGRA-g-tTSFvJi_Ij63tjcM0WQ$/aol"
border="0" height="60" width="468"></a>\n<BR><A
HREF="http://ads.web.aol.com/link/64000755/netscape"><B>Click Here!</B></A>');
The JS src url works when entered in the URL bar. Gagan any idea what's wrong
here?
Comment 10•25 years ago
|
||
all the smoketest results are in. this is the only bug holding the tree closed.
Comment 11•25 years ago
|
||
This is really a network problem, backing out rusty.lynch@intel.com's change
that he made yesterday to mozilla/netwerk/protocol/http/src/nsHTTPChannel.cpp
v1.198 fixes this problem, should we reassign this to someone else for a fix or
should we back Rusty out?
Priority: P3 → P1
Comment 12•25 years ago
|
||
v1.198 was backed out, reassigning to rusty.lynch@intel.com for correct fix.
Assignee: jst → rusty.lynch
Assignee | ||
Comment 14•25 years ago
|
||
I'm on it.
Comment 15•25 years ago
|
||
*** Bug 43975 has been marked as a duplicate of this bug. ***
Comment 16•25 years ago
|
||
*** Bug 43977 has been marked as a duplicate of this bug. ***
Comment 17•25 years ago
|
||
*** Bug 43977 has been marked as a duplicate of this bug. ***
Comment 18•25 years ago
|
||
this was my mistake. I didn't review your changes correctly. rusty here is what
the problem is CacheReceivedResponse can return NS_OK even in cases when the
listener2 is not set. And so the change that should go in is this-
From (line 1992 of nsHTTPChannel.cpp)
CacheReceivedResponse(listener, getter_AddRefs(listener2));
if (listener2) {
To
rv = CacheReceivedResponse(listener, getter_AddRefs(listener2));
if (NS_SUCCEEDED(rv) && listener2) {
Sorry for doing a hasty review! Do you want to check this fix in?
Thanks!
Comment 19•25 years ago
|
||
likewise for around line 2024
Assignee | ||
Comment 20•25 years ago
|
||
ok, that explains this morning's bug. I'll check in the proper fix.
Assignee | ||
Comment 21•25 years ago
|
||
fix checked in.
Status: NEW → RESOLVED
Closed: 25 years ago
Resolution: --- → FIXED
Comment 23•25 years ago
|
||
Adding keyword to bugs which already show a nsbeta2 triage value in the status
whiteboard so the queries don't get screwed up.
Keywords: nsbeta2
You need to log in
before you can comment on or make changes to this bug.
Description
•