Closed
Bug 22704
Opened 26 years ago
Closed 25 years ago
[LAYER] Collapse and Decollapse does not work
Categories
(Tech Evangelism Graveyard :: English US, defect, P2)
Tech Evangelism Graveyard
English US
Tracking
(Not tracked)
VERIFIED
FIXED
People
(Reporter: andre, Assigned: evangelism)
References
()
Details
Try to click on [+], normally it should decollapse,
IE and even Netscape 4.7 can do it
Updated•26 years ago
|
Assignee: mccabe → vidur
Component: Javascript Engine → DOM Level 1
QA Contact: rginda → gerardok
Comment 1•26 years ago
|
||
Confirmed that the demo at the URL does not work in a current build.
The [+] toggles the expansion/collapse of a list via javascript in NN 4.7.
This may be a DOM Level 1 bug, or the page may be using javascript manipulating
proprietary DOM elements - not sure. Changing Component from "Javascript
Engine" to "DOM level 1"
Changed URL to point to the left frame of original demo as that is the testcase;
the original is at http://www.phpwebdev.com/phpMyAdmin-demo/
Tested with:
1999-12-25-08-M13 nightly binary on Windows NT 4.0sp3
NN 4.7 on Windows NT 4.0sp3
Updated•26 years ago
|
Status: NEW → RESOLVED
Closed: 26 years ago
Resolution: --- → INVALID
Summary: Collapse and Decollapse does not work → [LAYER] Collapse and Decollapse does not work
Comment 2•26 years ago
|
||
The onclick event is handled by expandIt(arg), which uses roughly this logic:
NS4=(document.layers) ? true : false;
IE4=((document.all)&&(bV>=4))?true:false;
ver4 = (NS4 || IE4) ? true : false;
function expandIt(el) {
if (!ver4) return;
if (IE4) {expandIE(el)} else {expandNS(el)}
}
So, the script will not work with Mozilla under any circumstance
(i.e., 'document.layers == null' and 'document.all == undefined' on
Mozilla/5.0)
So, marking this bug [LAYER] and INVALID (but I (or someone) should really
send a note to the php people to use W3C DOM, and proper user-agent sniffing).
Updated•26 years ago
|
Status: RESOLVED → VERIFIED
Comment 4•26 years ago
|
||
[LAYER] Bug. Verified.
Comment 5•25 years ago
|
||
Moving all [LAYER] bugs to Evangelism component for tracking and open-source
evangelism by mozilla community members of sites that need to upgrade to support
web standards such as HTML 4.0 (instead of LAYER/ILAYER) and the W3C DOM
(instead of Nav4 document.layers[] or IE document.all()). Sites should be
lobbied to do the upgrade using the email templates that are linked to from
http://www.mozilla.org/newlayout/bugathon.html#layerbugs . When a site's owner
has confirmed receipt of the message requesting an upgrade, the bug should be
marked with the keyword evangelized to indicate that evangelism for that bug is
complete. When the site finishes the upgrade and supports standards, the bug
should be closed.
Assignee: vidur → nobody
Status: VERIFIED → NEW
Component: DOM Level 1 → Evangelism
Keywords: evangwanted
QA Contact: desale → nobody
Comment 6•25 years ago
|
||
Closing all Evangelism bugs where no evangelism is needed because page has been
fixed, site is internal to Netscape, report is a DUP, or bug report is no longer
appropriate for evangelism for any other reason.
Status: NEW → RESOLVED
Closed: 26 years ago → 25 years ago
Comment 7•25 years ago
|
||
SPAM:Changing QA contact on 111 evang bugs as I am now the new QA contact for
this component.
Sorry about the spam
zach
QA Contact: nobody → zach
Comment 8•25 years ago
|
||
Reassigning Evangelism bugs to me, the component's new owner. I would like to
take this opportunity to thank nobody@mozilla.org for all of his dedication,
contributions, and hard work, and wish him luck at his new job. Thanks, nobody.
Assignee: nobody → BlakeR1234
Status: RESOLVED → NEW
Comment 9•25 years ago
|
||
workaround bugzilla problem that caused a bunch of evangelism bugs to be
NEW/INVALID, NEW/FIXED, NEW/WORKSFORME or NEW/DUPLICATE
Resolution: INVALID → ---
Updated•25 years ago
|
Severity: normal → major
Status: NEW → ASSIGNED
OS: other → All
Priority: P3 → P2
Hardware: PC → All
Target Milestone: --- → mozilla0.6
Comment 10•25 years ago
|
||
-> evangelism@telocity.com for my evangelism bugs.
removing the now-depreciated evangelism-related keywords.
setting platform to All.
Updated•25 years ago
|
Target Milestone: mozilla0.6 → Future
| Reporter | ||
Comment 11•25 years ago
|
||
this is fixed now, but another bug appears, unfortunately their test page does
not work, I will file a new bug+testcase
marking this closed then (phpmyadmin has been changed to work with mozilla)
Status: NEW → RESOLVED
Closed: 25 years ago → 25 years ago
Resolution: --- → FIXED
Comment 13•24 years ago
|
||
All Evangelism Bugs are now in the Product Tech Evangelism. See bug 86997 for
details.
Component: Evangelism → US English
Product: Browser → Tech Evangelism
Target Milestone: Future → ---
Version: other → unspecified
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
•