blob: a9a393e4c435cfddbfe42da64644e453dac38f37 (
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
28
29
|
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<title><h6></title>
</head>
<body>
<!-- is not strictly inline -->
<p><dfn>text
<h6>more text</h6>
</dfn></p>
<!-- is not structured inline -->
<p>text
<h6>more text</h6>
</p>
<!-- cannot contain blocks -->
<h6>
<p>p1</p>
<p>p2</p>
</h6>
<!-- cannot contain structured inline -->
<h6>text
<ul><li>text</li></ul>
</h6>
</body>
</html>
|