blob: ef6da600ff2ae49263b45bfbe9cf182021f2043c (
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
|
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title><ins></title>
</head>
<body>
<!-- can contain strictly inline while in strictly inline context -->
<p><dfn>strictly inline
<ins>
<em>text</em>
</ins>
</dfn></p>
<!-- can contain interactive if ancestor does not forbid it -->
<p>paragraph
<ins>
<a>link</a>
</ins>
</p>
<p><dfn>strictly inline
<ins>
<a>link</a>
</ins>
</dfn></p>
</body>
</html>
|