Closed
Bug 281164
Opened 20 years ago
Closed 20 years ago
FireFox (as oppossed to IE) fails to render page
Categories
(Firefox :: General, defect)
Tracking
()
RESOLVED
INVALID
People
(Reporter: degt, Assigned: bugzilla)
References
()
Details
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko/20041107 Firefox/1.0 Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko/20041107 Firefox/1.0 The page above is rendered properly in Internet Explorer 6 (haven't tried anything else). However, when I attempt to view the same page in FireFox 1.0 absolutely NOTHING is displayed, only a black page (black background). Reproducible: Always Steps to Reproduce: 1. Point browser to http://www.NorfolkLine.com/ 2. Select the link labelled "Corporate site" 3. Should take you to http://www.norfolkline.com/default.aspx Actual Results: Only the page background (black color) is rendered Expected Results: Display the contents of the page of course! you can see it is all there using the View Source option.
Comment 1•20 years ago
|
||
You are missing a type attrubute to the second script element, if you
apply this patch your page works:
--- /Users/bfowler/Desktop/Bug.281164-fix.html Sat Feb 5 14:28:04 2005
+++ /Users/bfowler/Desktop/Bug.281164.html Sat Feb 5 14:28:44 2005
@@ -1,14 +1,13 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
<HEAD>
- <base href="http://www.norfolkline.com/default.aspx">
<TITLE>Norfolkline Corporate Website</TITLE>
<meta name="vs_targetSchema"
content="http://schemas.microsoft.com/intellisense/ie5">
<META NAME="GENERATOR" Content="Microsoft Visual Studio 7.0">
<LINK REL="stylesheet" HREF="stylesheet.css" type="text/css">
<script src="jscripts/common/math.js"></script>
- <script type="application/x-javascript" language="jscript">
+ <script language="jscript">
var oldMouseY = -1;
var mouseY = -1;
var vectorY = 0;
Comment 2•20 years ago
|
||
-> invalid based on comment #1
Status: UNCONFIRMED → RESOLVED
Closed: 20 years ago
Resolution: --- → INVALID
You need to log in
before you can comment on or make changes to this bug.
Description
•