summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/conformance-checkers/html/elements/i/model-novalid.html
blob: 892bb395e237ad5d254b3381348fd77d814cc403 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html>
<head>
  <meta charset=utf-8>
  <title>&lt;i&gt;</title>
</head>
<body>
  <!-- not a block -->
  <i>text</i>

  <!-- cannot contain structured inline -->
  <p><i><ul><li>text</li></ul></i></p>

  <!-- cannot contain interactive if parent forbids interactive -->
  <p><a><i><a>text</a></i></a></p>
  <p><a><dfn><i><a>text</a></i></dfn></a></p>
</body>
</html>