summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/conformance-checkers/html/elements/cite/model-novalid.html
blob: f1070dc454406b29d98bcaeaeb775e6b4bcd5d2c (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;cite&gt;</title>
</head>
<body>
  <!-- not a block -->
  <cite>text</cite>

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

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