Closed
Bug 120912
Opened 24 years ago
Closed 24 years ago
bmf.gv.at - Pop-up hints do not show, bad browser sniffing, no path for W3C DOM
Categories
(Tech Evangelism Graveyard :: German, defect)
Tech Evangelism Graveyard
German
Tracking
(Not tracked)
VERIFIED
DUPLICATE
of bug 120909
People
(Reporter: helmut.leininger, Assigned: tristan)
References
()
Details
(Whiteboard: [TOOL[HIERMENU][havefix][havecontact])
Build ID: 2002011703
When the mouse hovers over certain selections, pop-up hints are not shown
Reproducibility: Every time.
Steps to Reproduce:
1. go to http://www.bmf.gv.at/service/_startframe.htm?Typ=formulare
2. Select "Formulare" from the upper menu bar
3. move the mouse over one of the items in the rigth column of the table
Actual results:
nothing (besides the command shown in the status line)
Expected results:
A small box should open with an explanation
Comment 1•24 years ago
|
||
<img src="/resources/img/sitestd/blau/up_double.jpg" width="20" height="19"
border="0" alt="Zurück"></a>
<a href="#top"><img src="/resources/img/sitestd/blau/up.jpg" width="19"
height="19" border="0" alt="Zum Seitenanfang"></a>
They use ALT attributes which are not supposed to be for popup tootlips. There
is a bug in Explorer and Netscape 4 that does that. The correct HTML is
TITLE="popup text"
They need to fix their code.
Assignee: rogerl → nitot
Status: UNCONFIRMED → NEW
Component: JavaScript Engine → Europe: West
Ever confirmed: true
Product: Browser → Tech Evangelism
QA Contact: pschwartau → caillon
Version: other → unspecified
Comment 2•24 years ago
|
||
*** Bug 120998 has been marked as a duplicate of this bug. ***
Comment 3•24 years ago
|
||
Also note: from bug 120998
---------------------------------------
Description:
When the mouse hovers over certain selections, tooltips are not shown
Reproducibility:
Every Time
Steps to reporoduce:
1. http://www.bmf.gv.at/service/_startframe.htm?Typ=formulare
2. Select "Steuerformulare" which opens
http://www.bmf.gv.at/service/formulare/steuerform.htm
3.move the mouse over one of the items in the right column of the table
(e.g. "E1")
Actual Results:
nothing (besides the command shown in the status line)
Expected results:
A tooltip with an explanation should open
OS: Windows 2000 → All
Hardware: PC → All
Summary: Pop-up hints do not show → bmf.gv.at - Pop-up hints do not show, bad browser sniffing, no path for W3C DOM
Comment 4•24 years ago
|
||
My comment from the dupe:
[code reformatted for brevity]
var nav = (document.layers);
var iex = (document.all);
[...]
function pop(titel)
{
var tb1 = [snip html];
var content =[snip html];
if (nav) {
skn.document.write(content);
skn.document.close();
skn.visibility = "visible";
} else if (iex) {
document.all("topdeck").innerHTML = content;
skn.visibility = "visible";
}
}
The function pop() is called as a mouseover, and is obviously intended to show a
layer/div/whatever as a "tooltip", but it's wrecked by the bad browser sniffing
etc.
This is actually on a different page in the same site (see bug 120998 for steps
to reproduce)
Comment 5•24 years ago
|
||
Anyone contacted them?
Might be a political issue ... ;-)
Comment 6•24 years ago
|
||
they are using an old version of hiermenus that doesnt work with positionning in
mozilla (the menus do work, but they are placed incorrectly, which make submenus
pretty unusable...)
Whiteboard: [TOOL[HIERMENU][havefix]
Comment 7•24 years ago
|
||
hey, this is a dupe of 120909 am I wrong ?
if not : contact info is http://www.bmf.gv.at/service/kontakte/_start.htm
Whiteboard: [TOOL[HIERMENU][havefix] → [TOOL[HIERMENU][havefix][havecontact]
Comment 8•24 years ago
|
||
*** This bug has been marked as a duplicate of 120909 ***
Status: NEW → RESOLVED
Closed: 24 years ago
Resolution: --- → DUPLICATE
Comment 9•24 years ago
|
||
yep. good grief, how did we miss that one for so long...
Verified dupe
Status: RESOLVED → VERIFIED
Updated•11 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
•