Closed
Bug 142492
Opened 23 years ago
Closed 23 years ago
harzasserwerke.de - page does not open because of style sheet problem
Categories
(Tech Evangelism Graveyard :: German, defect)
Tracking
(Not tracked)
VERIFIED
FIXED
People
(Reporter: RainerBielefeldNG, Assigned: tristan)
References
()
Details
(Whiteboard: [eurocontest])
Attachments
(1 file)
3.94 KB,
text/html
|
Details |
Mozilla/5.0 (Windows; U; Win98; en-US; rv:1.0.0+) Gecko/20020505
and several older tested
Page does not open correctly
Steps tor reproduce:
1. Enter URI: http://www.harzwasserwerke.de
2. <ENTER>
Expectd reaction:
http://www.harzwasserwerke.de/start.htm should open
Actual reaction:
http://www.harzwasserwerke.de/nostyle.htm
opens with errormessage that says: "you have deactivated "Style Sheets" at your
browser, which are required ....."
I found no possibility to activate / deactivate style sheets, and I
_have_activated_ style sheets, because other pages using style sheets are shown
correctly.
URI works fine with IE6, OPERA6 and NN4.73 (which does not support style sheets ...)
When you open http://www.harzwasserwerke.de/start.htm, this page will not be
shown correctly, indeed (pics missing etc.)!
The page is in awful html, but oter browsers semm to have no problems.
Comment 1•23 years ago
|
||
This is not a bug in mozilla, it is a bug in the website or better in the script.
The website looks only if it is a NS browser and then check if it have the
object document.foo <div> ... but thats not rightly DOM 1+2 style.
Reporter you should contact the webmaster of the side and send him a comment.
Bug should be closed as INVALIDE
Comment 2•23 years ago
|
||
-> Evangelism
Assignee: dbaron → nitot
Status: UNCONFIRMED → NEW
Component: Style System → Europe: West
Ever confirmed: true
Product: Browser → Tech Evangelism
QA Contact: ian → brantgurganus2001
Version: other → unspecified
Comment 3•23 years ago
|
||
Happens on Windows XP as well. Will attach source of redirecting page.
OS: Windows 98 → All
Summary: page does not open because of style sheet problem → harzasserwerke.de - page does not open because of style sheet problem
Updated•23 years ago
|
Whiteboard: [eurocontest]
Comment 4•23 years ago
|
||
Script causing problem:
var bName=navigator.appName;
var bVer=parseInt(navigator.appVersion);
var NS4=(bName=="Netscape" && bVer>=4);
var IE4=(bName=="Microsoft Internet Explorer" && bVer>=4);
function test(){
if(bVer < 4){
top.location.href="altebro.htm";
}
if(NS4 || IE4){
document.location.replace("start.htm");
}
}
function div_start(){
if (NS4) {
objekt1=eval(document.foo);
var anim_ns = document.foo;
var typ_ns = typeof anim_ns;
if(typ_ns == "undefined"){
document.location.href="nostyle.htm";
}
}
if (IE4) {
objekt1=eval("document.all.foo.style");
var anim_ie = document.all.foo.style;
var typ_ie = typeof anim_ie;
if(typ_ie == "undefined"){
document.location.href="nostyle.htm";
}
}
}
/*alert('Dies ist ein "' + typ +'"');
alert('Dieser Typ ist "' + typ +'"');*/
function div_bewegen(){
if(parseInt(objekt1.top)<500){
objekt1.toppos=parseInt(objekt1.top);
objekt1.leftpos=parseInt(objekt1.left);
objekt1.toppos+=5;
objekt1.leftpos+=5;
objekt1.top=objekt1.toppos;
objekt1.left=objekt1.leftpos;
setTimeout("div_bewegen()",50);
}
}
Reporter | ||
Comment 5•23 years ago
|
||
Owner corrected Page, so now
--> INVALID
Status: NEW → RESOLVED
Closed: 23 years ago
Resolution: --- → INVALID
Comment 6•23 years ago
|
||
This needs to be marked fixed, not invalid; I am reopening this bug to correct this.
Status: RESOLVED → REOPENED
Resolution: INVALID → ---
Comment 7•23 years ago
|
||
so we'll do it ;)
Status: REOPENED → RESOLVED
Closed: 23 years ago → 23 years ago
Resolution: --- → FIXED
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
•