Closed Bug 57172 Opened 24 years ago Closed 23 years ago

cdrinfo.com - page stay's blank

Categories

(Tech Evangelism Graveyard :: English US, defect, P3)

All
Windows 98
defect

Tracking

(Not tracked)

VERIFIED FIXED

People

(Reporter: mozilla, Assigned: bc)

References

()

Details

From Bugzilla Helper:
User-Agent: Mozilla/5.0 (Windows; U; Win98; en-US; m18) Gecko/20001017
BuildID:    2000101704

when visiting this page the page does not display
i deleted the complete cache directory to see if wasn't
a cache problem but still no display
i get a document done and the throber stops spinning
cookies have been disabled
the site is also verry slow

when i do view-source i can see however the complete html code

Reproducible: Always
Steps to Reproduce:
visit http://www.cdrinfo.com/hardware/plextor1210s/page2.shtml


Actual Results:  white page with no content

Expected Results:  page display's
site uses layers, however, remving the nolayer tag makes the page show.  While
layers is invalid, should this really stop the page from loading.

sending to layout.
Assignee: asa → clayton
Status: UNCONFIRMED → NEW
Component: Browser-General → Layout
Ever confirmed: true
QA Contact: doronr → petersen
I can reproduce the problem on the Mac. Reassigned to myself for investigation.
Assignee: clayton → pierre
The culprit is the bms_position() function. A possible fix would be:

function bms_position()
{
 var lw=776;
 var isNav, isIE;
 if (document.all){
   isIE = true;
 }
 else if (document.layers) {
   isNav = true;
 }

 if (isNav)
 {
  var bw=window.innerWidth;
  var ho=(bw-lw)/2;
  if(ho>0)
  {
   document.layers['LayoutLYR'].left=ho;
  }
  document.layers['LayoutLYR'].visibility="visible"
 }
 else {
  var bw=document.body.offsetWidth-20;
  var ho=(bw-lw)/2;
  var element;
  if (isIE) {
    element = document.all.tags('DIV')['LayoutLYR'];
  }
  else {
    element = document.getElementById("LayoutLYR");
  }
  if(ho>0)
  {
   element.style.left=ho;
  }
  element.style.visibility="visible"
 }
}


Reassigned to Evangelism.
Assignee: pierre → blakeross
Component: Layout → Evangelism
QA Contact: petersen → zach
-> evangelism@telocity.com for my evangelism bugs.

removing the now-depreciated evangelism-related keywords.

setting platform to All.
Assignee: blakeross → evangelism
Hardware: PC → All
Reassigning evangelism bugs to bclary@netscape.com.
Assignee: evangelism → bclary
Summary: page stay's blank → cdrinfo.com - page stay's blank
All Evangelism Bugs are now in the Product Tech Evangelism. See bug 86997 for
details.
Component: Evangelism → US English
Product: Browser → Tech Evangelism
Version: other → unspecified
tis fixed
Status: NEW → RESOLVED
Closed: 23 years ago
Resolution: --- → FIXED
v
Status: RESOLVED → VERIFIED
Product: Tech Evangelism → Tech Evangelism Graveyard
You need to log in before you can comment on or make changes to this bug.