blob: 3ee9b822eb23c824b4abb2ff26e499c35f9404f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<title><map></title>
</head>
<body>
<!-- is block, contains blocks and <area> -->
<map name="foo" class="class" id="id" lang="en">
<h2>header</h2>
<area alt="text" coords="1,2,3,4">
<p>text</p>
<area alt="text" coords="5,2,3,4">
<p>text2</p>
</map>
<!-- can contain interactive -->
<map>
<p><a>text</a></p>
<area alt="text" coords="5,2,3,4">
</map>
<!-- map with flow content and phrasing parent -->
<span><map name=foo><p>foo</p></map></span>
</body>
</html>
|