Closed
Bug 96201
Opened 24 years ago
Closed 23 years ago
links in imagemap does not appear
Categories
(Core :: Layout, defect)
Tracking
()
RESOLVED
WONTFIX
Future
People
(Reporter: bugzilla, Assigned: attinasi)
References
()
Details
(Keywords: compat, testcase)
Attachments
(1 file)
|
808 bytes,
text/html
|
Details |
no links appear at http://www.schulstad.dk/salgstur/det_gode/
build 20010820
works fine in IE and NS4
Comment 1•24 years ago
|
||
no links in opera neither
and page doesn't validate as HTML4 transitional
Comment 2•24 years ago
|
||
Looking at source, there are 2 image maps in the page called "Map", and one
called "Test". Is it legal to have 2 maps with the same name?
| Reporter | ||
Comment 3•24 years ago
|
||
this one is still valid. Is problems with image maps = layout?
| Reporter | ||
Comment 5•24 years ago
|
||
is this win only?
still not working with build 20020116
Comment 6•24 years ago
|
||
In the HTML 4.0 DTD, It shows that MAP element can contain %block and AREA
elements only. The page shows a main MAP element containing two child MAP
elements which is invalid according to the DTD.
<img usemap="#Map"...>
<map name="Map">
<area ...>
<map name="Map">
<area ...>
<map name="test">
<area ...>
</map>
</map>
If you removed the nested MAP elements, the links are functional. See attached file.
Comment 7•24 years ago
|
||
All links should be functional in revised test case
Comment 8•23 years ago
|
||
Marking "compat" per petersen's comments.
Comment 9•23 years ago
|
||
Actaully, in NS4 only 2 of the 3 links work -- the ones that are kids of the
_second_ "Map" imagemap. In Mozilla, only the first one works (the one that's a
kid of the first imagemap).
Since we've had exactly one report of this over 4 years and since this would be
nontrivial to fix, and since this markup is invalid.... WONTFIX.
Status: NEW → RESOLVED
Closed: 23 years ago
Resolution: --- → WONTFIX
You need to log in
before you can comment on or make changes to this bug.
Description
•