Closed
Bug 11228
Opened 27 years ago
Closed 27 years ago
usemap can't deal with map names containing whitespace
Categories
(Core :: DOM: UI Events & Focus Handling, defect, P3)
Tracking
()
People
(Reporter: tor, Assigned: joki)
References
()
Details
Not sure this is the right component (might even be a parsing problem),
but "Event Handling" seemed like a good starting point.
This testcase of using a map name containing a space works in Netscape 4.61,
but fails with apprunner (8/3 CVS pull). apprunner doesn't do anything when
the image is clicked on.
<img src="http://www.mozilla.org/status/tree.gif" usemap="#foo bar" width="49"
height="60">
<map name="foo bar">
<area shape="rect" coords="0,0,48,59" href="http://www.mozilla.org/">
</map>
Removing the whitespace ("foo bar" -> "foobar") causes it work in both
Netscape and apprunner.
<img src="http://www.mozilla.org/status/tree.gif" usemap="#foobar" width="49"
height="60">
<map name="foobar">
<area shape="rect" coords="0,0,48,59" href="http://www.mozilla.org/">
</map>
Updated•27 years ago
|
QA Contact: janc → elig
Comment 1•27 years ago
|
||
[QA Assigning to self --- imagemap issue.]
Updated•27 years ago
|
Status: NEW → RESOLVED
Closed: 27 years ago
Resolution: --- → DUPLICATE
Updated•27 years ago
|
Status: RESOLVED → VERIFIED
Comment 3•27 years ago
|
||
Verifying as duplicate. (Technically, the other bug is a duplicate, but it has
more information, so we'll make engineering's life easier by leaving that one
open. ;)
Updated•7 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
•