Closed
Bug 95148
Opened 23 years ago
Closed 22 years ago
planetprint.com - [LAYER] DHTML menu uses layers
Categories
(Tech Evangelism Graveyard :: English US, defect, P3)
Tech Evangelism Graveyard
English US
Tracking
(Not tracked)
RESOLVED
INVALID
People
(Reporter: pschwartau, Assigned: doronr)
References
()
Details
(Whiteboard: [TOOL][BRAINJAR][aok])
The site http://www.planetprint.com uses layers, which are non-W3C
standard and not supported by Mozilla/N6.
From http://planetprint.com/dhtmllib.js :
/******************************************************************************
* dhtmllib.js *
* *
* Copyright 1999 by Mike Hall. *
* Web address: http://www.brainjar.com *
* Last update: February 26, 2000. *
* *
* Provides basic functions for DHTML positioned elements which will work on *
* both Netscape Communicator and Internet Explorer browsers (version 4.0 and *
* up). *
******************************************************************************/
// Determine browser.
var isMinNS4 = (navigator.appName.indexOf("Netscape") >= 0 &&
parseFloat(navigator.appVersion) >= 4) ? 1 : 0;
var isMinIE4 = (document.all) ? 1 : 0;
var isMinIE5 = (isMinIE4 && navigator.appVersion.indexOf("5.") >= 0) ? 1 : 0;
//-----------------------------------------------------------------------------
// Layer visibility.
//-----------------------------------------------------------------------------
function hideLayer(layer) {
if (isMinNS4)
layer.visibility = "hide";
if (isMinIE4)
layer.style.visibility = "hidden";
}
function showLayer(layer) {
if (isMinNS4)
layer.visibility = "show";
if (isMinIE4)
layer.style.visibility = "visible";
}
etc.
etc.
And from http://planetprint.com/js/navbar.js :
function navBarCreate() {
if (isMinNS4)
str += '<layer name="navBar' + this.index + '_filler"></layer>\n'
+ '<layer name="navBar' + this.index + '_hdrsBase">\n';
etc.
etc.
Updated•23 years ago
|
Priority: -- → P3
Summary: [LAYER] DHTML menu uses layers → planetprint.com - [LAYER] DHTML menu uses layers
Updated•23 years ago
|
Whiteboard: [TOOL][BRAINJAR]
Assignee | ||
Comment 1•23 years ago
|
||
http://www.planetprint.com/index.cfm?xcr=browsers.html needs fixing when this
gets fixed
Whiteboard: [TOOL][BRAINJAR] → [TOOL][BRAINJAR][aok]
Comment 2•23 years ago
|
||
Mass reassign of all tech-evangelism us general bugs assigned to bc to
doron except bc's P1 bugs. You may search for this mass reassign (it is
305 bugs) by searching for the keyword 'greeneggsandham'
Assignee: bclary → doronr
PlanetPrint is gone. PathForward does not use any js menus.
% curl -I http://www.planetprint.com
HTTP/1.1 301 Error
Location: http://www.pathforward.com/
Server: Microsoft-IIS/5.0
Content-Type: text/html
Content-Length: 150
Status: NEW → RESOLVED
Closed: 22 years ago
Hardware: PC → All
Resolution: --- → INVALID
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
•