blob: cd10ac511e5cc5b51040adfe192dff6f1d2ba189 (
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
30
31
32
|
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<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>
<!-- ins with flow content and flow parent -->
<div><ins><p>foo</p></ins></div>
</body>
</html>
|