Closed
Bug 131664
Opened 23 years ago
Closed 23 years ago
This page looks wrong in Mozilla (menus not displayed)
Categories
(SeaMonkey :: General, defect)
Tracking
(Not tracked)
VERIFIED
DUPLICATE
of bug 116368
People
(Reporter: flashcode, Assigned: asa)
References
()
Details
From Bugzilla Helper:
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.8) Gecko/20020204
BuildID: 2002020415
On this page: http://client.bouygtel.com/forfait.html
menus are not displayed with Mozilla 0.9.8 (Linux).
Same (bad) result with Konqueror 2.2.2 (Linux).
But it works OK with Opera 6.0 beta1 (Linux) and Internet Explorer 5.5 (Windows).
In Mozilla, menus are not displayed (center of page: blank area).
Reproducible: Always
Steps to Reproduce:
1. Go to http://client.bouygtel.com/forfait.html
Actual Results: No menu displayed (blank area in the center of the page).
Expected Results: Menus are displayed (color: blue) to access to other pages.
Comment 1•23 years ago
|
||
Might be bad JavaScript code, tools.js:
[...]
function creCalq(id,contenu,top,left,w,h,z,col)
{if (!document.layers)
{strDiv = "<DIV ID='"+id+"'
STYLE='position:absolute;top:"+top+"px;left:"+left+"px;width:"+w+";height:"+h+";background-color:"+col+";z-index:"+z+";visibility:visible'>"+contenu+"</DIV>";
document.write (strDiv);}
else
{creCalqNS(id,contenu,top,left,w,h,z,col);}
}
function creCalqNS(id,contenu,top,left,w,h,z,col)
{if (w == '99%') w = screen.width;
document.layers[id] = new Layer(w);
document.layers[id].top = top;document.layers[id].left =
left;document.layers[id].width = w;
document.layers[id].height = h;document.layers[id].visibility =
'visible';document.layers[id].bgColor = col;
document.layers[id].zIndex =
z;document.layers[id].document.open();document.layers[id].document.write(contenu);
document.layers[id].document.close();
}
These functions are called to display the actual content.
Site works on IE6, NS4.76, not build 2002031708 on Win2k.
Propose to move to Tech Evangelism.
Comment 2•23 years ago
|
||
*** This bug has been marked as a duplicate of 116368 ***
Status: UNCONFIRMED → RESOLVED
Closed: 23 years ago
Resolution: --- → DUPLICATE
Updated•21 years ago
|
Product: Browser → Seamonkey
You need to log in
before you can comment on or make changes to this bug.
Description
•