blob: 93aff8d09b7986232c5e3b3cce18bf5ae2246839 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<a xlink:href="http://example.com/1">
<title>A</title>
<rect x="25" y="20" width="50" height="10"/>
</a>
<a xlink:href="http://example.com/2" xlink:title="B">
<title>A</title>
<rect x="25" y="45" width="20" height="10"/>
<rect x="55" y="45" width="20" height="10"/>
</a>
<a xlink:href="http://example.com/3" aria-label="C" xlink:title="B">
<title>A</title>
<rect x="25" y="70" width="50" height="10"/>
</a>
</svg>
|