--------
<html>
<head>
</head>
<body>
<map name="bug2">
<area shape="rect" href="subgraph" coords="17,16,111,86">
<area shape="rect" href="inner" title="inner" alt="inner" coords="28,27,100,75">
<area shape="rect" href="outer" title="outer" alt="outer" coords="124,27,196,75">
<area shape="rect" href="graph" alt="Bug" coords="7,6,196,96">
</map>
<img src="bug2.gif" usemap="#bug2" border=0>
</body>
</html>
---------
Unfortunately the "subgraph"-area is before the "inner"-area,
so "inner" can never be 'clicked'.
(Compile bug2 to a gif, load the html-File
to a browser and check for yourself).
digraph Bug2 {
label="";
URL="graph";
subgraph cluster_x {
inner [URL="inner"];
URL="subgraph";
}
outer [URL="outer"];
}
Comments: