Closed
Bug 205480
Opened 22 years ago
Closed 22 years ago
thalesgroup.com - Blank page.
Categories
(Tech Evangelism Graveyard :: English US, defect)
Tracking
(Not tracked)
RESOLVED
DUPLICATE
of bug 191016
People
(Reporter: emmanuel.verguet, Unassigned)
References
()
Details
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.3.1) Gecko/20030425
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.3.1) Gecko/20030425
In the page http://www.thalesgroup.com, nothing is displayed. Using IE6, page is
displayed correctly. Source page is not empty.
Reproducible: Always
Steps to Reproduce:
1. Open http://www.thalesgroup.com
2.
3.
Actual Results:
Nothing displayed.
Expected Results:
Page must be displayed.
Comment 1•22 years ago
|
||
Mozilla/5.0 (Windows; U; Win98; en-US; rv:1.4b) Gecko/20030512
Empty page has scrollbars, sourcecode can be displayed.
JavaScript Console gives tons of Warnings and one Error:
Warning: reference to undefined property window.hl_DQM_subdesc3_2
Warning: assignment to undeclared variable Affpage
Warning: test for equality (==) mistyped as assignment (=)?
Warning: reference to undefined property document.all
Warning: reference to undefined property document.layers
Warning: reference to undefined property d.MM_p
Warning: reference to undefined property MM_preloadImages.arguments
Warning: deprecated arguments usage
Error: thel is not defined
Source File: http://www.thalesgroup.com/home/home/index.html
Line: 49
the main page http://www.thalesgroup.com redirects you to
http://www.thalesgroup.com/home/home/index.html
which contains
if(document.layers)
{document.write("<link rel=stylesheet type=text/css
href=css/thales_netscape.css>");}
else
{document.write("<link rel=stylesheet type=text/css href=css/thales_ie.css>");
Would that make sense?
Comment 3•22 years ago
|
||
I can confirm this. Win98SE, mozilla trunk build 2003050610. Might very well be
an evangelism issue though.
Status: UNCONFIRMED → NEW
Ever confirmed: true
Comment 4•22 years ago
|
||
This looks really odd, wonder if this is the problem:
This code is in the <head> (at http://www.thalesgroup.com/home/home/index.html):
function launchDthml()
{
MM_preloadImages('imgs/home/group_act_on.gif','imgs/home/press_on.gif','imgs/home/investor_on.gif','imgs/home/human_on.gif','imgs/home/contact_on.gif','imgs/home/roll_aerospace.gif','imgs/home/roll_defence.gif','imgs/home/roll_its.gif');
/* AHD 2003-110454-INC
startscroll();
*/
if(document.layers)
{
document.layers['thel'].visibility="hidden"
}
else
{
thel.style.visibility="visible"
}
}
But just after the <body> they have a script that, from what I understand, hides
content from all browsers except NS4. To me it looks like they set
"visibility:hidden" for the <div> that contains all the content:
<body ... ... >
if(document.layers)
{
document.write('<layer zIndex="0" id="thel" bgcolor="#f0f0f0"
visibility="visible" width="900" height="590"> </layer>');
}
else
{
document.write('<div id="thel"
style="background-color:#f0f0f0;positionning:absolute;visibility:hidden">');
}
... content ...
<script language="javascript">
if(!document.layers)
{
document.write('</div>');
}
</script>
</body>
->Evang.
Assignee: block-and-inline → susiew
Component: Layout: Block & Inline → US General
Product: Browser → Tech Evangelism
QA Contact: ian → zach
Version: Trunk → unspecified
Comment 6•22 years ago
|
||
tech evang june 2003 reorg
Assignee: susiew → english-us
QA Contact: zach → english-us
Comment 7•22 years ago
|
||
*** This bug has been marked as a duplicate of 191016 ***
Status: NEW → RESOLVED
Closed: 22 years ago
Resolution: --- → DUPLICATE
Updated•10 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
•