[Webkit-unassigned] [Bug 25291] New: Add Support for a-Tag in Imagemaps

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Apr 20 03:34:17 PDT 2009


https://bugs.webkit.org/show_bug.cgi?id=25291

           Summary: Add Support for a-Tag in Imagemaps
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: Macintosh
               URL: http://www.w3.org/TR/html401/struct/objects.html#h-13.6
        OS/Version: Mac OS X 10.5
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P2
         Component: Images
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: gmblar at gmail.com


Add Support for Attributes "shape" and "coords" in a-Tag for Imagemaps
described in http://www.w3.org/TR/html401/struct/objects.html#h-13.6


Sample:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
        <title>Imagemaps</title>
    </head>
    <body>
        <h1>Imagemaps</h1>

        <h2>Imagemap 1</h2>
        <img src="http://www.example.com/imagemap.jpg" usemap="#foo"
style="width: 128px; height: 128px;" />
        <map name="foo" id="foo">
            <area href="#dog" shape="rect" coords="0,64,64,0" />
        </map>

        <h2>Imagemap 2 (Not working in Safari)</h2>
        <img src="http://www.example.com/imagemap.jpg" usemap="#bar"
style="width: 128px; height: 128px;" />
        <map name="bar" id="bar">
            <p>Objects found on this Image:</p>
            <a href="#dog" shape="rect" coords="0,64,64,0">My Dog</a>
        </map>
    </body>
</html>


-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the webkit-unassigned mailing list