Closed
Bug 92855
Opened 24 years ago
Closed 24 years ago
mozilla doesn't do mouseover in upper frame
Categories
(Core :: DOM: UI Events & Focus Handling, defect)
Tracking
()
RESOLVED
WONTFIX
People
(Reporter: hachre, Assigned: joki)
References
()
Details
From Bugzilla Helper:
User-Agent: Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.0)
BuildID: 2001072808
when u call the url and hover your mouse over the links in the upper frame they
don't change their color - but they should
Reproducible: Always
Comment 1•24 years ago
|
||
At least in the upper frame, there are lots of IE-isms like
document.body and the window.event object. From the JavaScript Console:
Error: event is not defined
Source File: http://www.dvdboard.de/FAQ/kopf.htm
Line: 17
A sample of the code in this frame:
<script language=JavaScript><!--
{
document.body.onmouseover=makeCool; <<<<<<<<<<<<<<<<<<<< document.body
document.body.onmouseout=makeNormal;
}
function makeCool()
{
src = event.toElement; <<<<<<<<<<<<<<<<<<<<< window.event
if (src.tagName == "A")
{
src.oldcol = src.style.color;
src.style.color = "#FF0000";
}
}
etc.
etc.
Meanwhile, I can't see where any browser-sniffing is. The mouseover
events don't work in Netcscape 4.7, either -
Reassigning to Evangelism component -
Assignee: rogerl → bclary
Component: Javascript Engine → Evangelism
QA Contact: pschwartau → zach
Comment 2•24 years ago
|
||
Note: the HTML credits this template site for JS menus (in German):
http://rheinbreitbach.net/js-menue/
cc'ing Matthias in case he is able to find where the browser-sniffing
might be here - I can't find any.
Comment 3•24 years ago
|
||
The JS-Menu contains no Browser Sniffer Code.
I contacted the Author of that Menue "JS-Menue@rheinbreitbach.net".
I assign this bug to me.....
Assignee: bclary → Matti
Updated•24 years ago
|
Status: NEW → ASSIGNED
Comment 4•24 years ago
|
||
This is not a problem with the code (the IE crap is not the problem)
The original JS-Menu can be found at http://rheinbreitbach.net/js-menue/ and
it does not work.
The menu use CSS: a:hover for the colour change of the link but this doesn't
work in mozilla.
This should be a dupe of bug 38380
[ESM/CSS] css a:hover ignored on link with javascript "onMouseover" and "return
true;"
Assignee: Matti → pierre
Status: ASSIGNED → NEW
Component: Evangelism → Style System
QA Contact: zach → ian
Comment 5•24 years ago
|
||
*** This bug has been marked as a duplicate of 38380 ***
Status: NEW → RESOLVED
Closed: 24 years ago
Resolution: --- → DUPLICATE
Reporter | ||
Comment 6•24 years ago
|
||
it isn't a duplicate of 38380 - 38380 is done and the bug is still there -
reopening.
Status: RESOLVED → REOPENED
Resolution: DUPLICATE → ---
Updated•24 years ago
|
Assignee: pierre → joki
Status: REOPENED → NEW
Component: Style System → Event Handling
QA Contact: ian → madhur
Comment 7•24 years ago
|
||
Yes, this is not a duplicate of bug 38380, for the originally reported
problem at http://www.dvdboard.de/FAQ/kopf.htm. The problem is what
pschwartau stated earlier: that the mouseover coloring is implemented
using methods specific to IE's event model, e.g., 'srcElement' & 'toElement'.
-> joki, Event Handling, and then I'm bonking this one on the head: those
properties are not going to be implemented (and if I'm wrong about that, then
joki can correct me).
Comment 8•24 years ago
|
||
wontfix (not going to implement the entire IE event model).
Status: NEW → RESOLVED
Closed: 24 years ago → 24 years ago
Resolution: --- → WONTFIX
Reporter | ||
Comment 9•24 years ago
|
||
man, thats sad
Comment 10•24 years ago
|
||
Should this not go to evangelism ?
The original JS is using a:hover and this is fixed (bug 38380)
I didn't notice that this page changed the original menu with this IE only
functions... (my mistake)
Reporter | ||
Comment 11•24 years ago
|
||
as long as every webmaster will get mad about mozilla not being able to view
the website like ie mozilla won't get the number one browser...
Comment 12•24 years ago
|
||
(SORRY FOR THIS SPAM)
hachre@nexgo.de:
If a webmaster use W3C standard code, you can use it with every
standard compliance browser. (like Mozilla and Opera and...and ...).
The original js-menu at "http://rheinbreitbach.net/js-menue/" works now after
bug 38380 is fixed. It works with IE and Mozilla !
The problem: www.dvdborad.de changed the original JS-menu code to IE code crap
-> it's the webmasters fault and not Mozilla's !
Reporter | ||
Comment 13•24 years ago
|
||
Yeah thats right, but i understand both - the webmasters who have learned the
features of ie that aren't w3c standard AND mozilla who doesn't want to
implement ie-features... but i would say as ie is currently the leading
browser mozilla should adapt to it so mozilla has got a chance to get the
browser most of the people use again.
Updated•23 years ago
|
QA Contact: madhur → rakeshmishra
Updated•23 years ago
|
QA Contact: rakeshmishra → trix
Updated•6 years ago
|
Component: Event Handling → User events and focus handling
You need to log in
before you can comment on or make changes to this bug.
Description
•