Closed
Bug 56466
Opened 25 years ago
Closed 23 years ago
passo.de - show|hide layer functions not working
Categories
(Tech Evangelism Graveyard :: German, defect, P3)
Tracking
(Not tracked)
VERIFIED
WORKSFORME
People
(Reporter: andi, Assigned: tristan)
References
()
Details
(Whiteboard: [havefix][havecontact])
Navigate to
http://www.passo.de
Netscape 4.7 and IE display the start page correctly, while Mozilla claims that
there is an infinite loop condition.
Comment 1•25 years ago
|
||
Seeing this with Mac OS 9.0.4, Moz trunk build 2000101215. Initial page does
*not* load, reload will miss the apparent splash page.
After entering the above URL in the address bar, Mozilla went to:
file:///Macintosh%20HD/Test/mozilla-mac-Mtrunk/chrome/packages/core/redirect_loop.xul
and locked that browser window up. Oddly enough, I could still command-N to
open another browser window to report this bug.
Comment 2•25 years ago
|
||
*whoops*
initial browser window did *not*, repeat *not* lock up, Mozilla merely displayed
above local file as a blank page. Sorry for the confusion factor.
Comment 3•25 years ago
|
||
changing component to evangalism. adding [layer] to summary
Component: Javascript Engine → Evangelism
Summary: www.passo.de generates an "infinite loop detected", but it should not → [LAYER]www.passo.de generates an "infinite loop detected", but it should not
Comment 4•25 years ago
|
||
Setting default owner and QA contact -
Assignee: rogerl → blakeross
QA Contact: pschwartau → zach
Updated•25 years ago
|
Status: UNCONFIRMED → NEW
Ever confirmed: true
Comment 5•25 years ago
|
||
-> evangelism@telocity.com for my evangelism bugs.
removing the now-depreciated evangelism-related keywords.
setting platform to All.
Assignee: blakeross → evangelism
Hardware: PC → All
Comment 6•25 years ago
|
||
Anyone knows why this bug marked [LAYER] and put on evangelism?
Layer tags are the cause of "infinite loop detected"?????
It must be a mistake...
If I load the page in Nav4 it redirects to a page, that DOES render in mozilla.
(It looks bad because of layers, but that's NOT what this bug was about.)
I have another URL that generates "infinite loop detected".
It is http://www.ebolt.hu/
That site has no layers.
Should I file another bug for it?
Comment 7•25 years ago
|
||
This needs a testcase! If we can make the error happen without layer or
other junk, then it it is bug.
Comment 8•25 years ago
|
||
Works for me. 2001-04-15-20, Win NT.
Comment 9•24 years ago
|
||
Reassigning evangelism bugs to bclary@netscape.com.
Assignee: evangelism → bclary
Updated•24 years ago
|
Component: Evangelism → European
Product: Browser → Tech Evangelism
Version: other → unspecified
Comment 11•24 years ago
|
||
no infinite loop, but <layer>
Comment 12•24 years ago
|
||
Moving to new component "West Europe". European component is being removed.
See bug 95808 for details.
Component: European → West Europe
QA Contact: momoi → caillon
Comment 13•24 years ago
|
||
They use serverside sniffing and give us layers
Comment 14•23 years ago
|
||
no visible problem. Paged changed since it's now Vodafone I guess
Status: NEW → RESOLVED
Closed: 23 years ago
Resolution: --- → FIXED
Comment 15•23 years ago
|
||
please compare to IE or 4.x :)
Status: RESOLVED → REOPENED
Resolution: FIXED → ---
Comment 16•23 years ago
|
||
havefix :
- fist they need to send gecko browser the IE version, not the NS4 one.
- then they need to modify their scripts to be dom-compliant.
im attaching a script.js file with fixes for each function.
Whiteboard: [havefix]
Comment 17•23 years ago
|
||
here is the fix :
function updateActiveArea(name)
{
if (document.all)
{
for (flag = 0; flag < itemLength; flag++)
{
id = "div" + flag;
document.all[id].style.visibility = "hidden";
}
document.all["div"+name].style.visibility = "visible";
}
else if (document.layers)
{
for (flag = 0; flag < itemLength; flag++)
{
document.layers["container"].document.layers[flag].visibility = "hide";
}
document.layers["container"].document.layers[name].visibility = "show";
}
else if (document.getElementById)
{
for (flag = 0; flag < itemLength; flag++)
{
id = "div" + flag;
document.getElementById(id).style.visibility = "hidden";
}
document.getElementById("div" + name).style.visibility = "visible";
}
return true;
}
/* ......... */
if (document.all)
document.all["div0"].style.visibility = "visible";
else if (document.getElementById)
document.getElementById("div0").style.visibility = "visible";
Updated•23 years ago
|
Summary: [LAYER]www.passo.de generates an "infinite loop detected", but it should not → [LAYER] www.passo.de
Comment 18•23 years ago
|
||
> im attaching a script.js file with fixes for each function.
err, ignore that, since I put my fix in the previous comment :)
Comment 19•23 years ago
|
||
contact info :
Vodafone Passo GmbH
Niederkasseler Lohweg 20
40547 Düsseldorf
Tel: 02 11 / 53 52 - 2 00
Fax: 02 11 / 53 52 - 2 20
E-Mail: info@passo.de
Whiteboard: [havefix] → [havefix][havecontact]
Updated•23 years ago
|
Summary: [LAYER] www.passo.de → passo.de : show|hide layer functions not working
Comment 20•23 years ago
|
||
it is done!
Status: REOPENED → RESOLVED
Closed: 23 years ago → 23 years ago
Resolution: --- → WORKSFORME
Comment 21•23 years ago
|
||
v
Status: RESOLVED → VERIFIED
Summary: passo.de : show|hide layer functions not working → passo.de - show|hide layer functions not working
Updated•11 years ago
|
Product: Tech Evangelism → Tech Evangelism Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•