summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/conformance-checkers/html/elements/em/model-novalid.html
blob: 1b721e7b581f7200d2eada75458da6a475e6d3cc (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
<!DOCTYPE html>
<html>
<head>
  <meta charset=utf-8>
  <title>&lt;em&gt;</title>
</head>
<body>
  <!-- is structured inline -->
  <p><em class="class" lang="en">text</em></p>

  <!-- is strictly inline -->
  <p><dfn><em class="class" lang="en">text</em></dfn></p>

  <!-- can be empty -->
  <p>text <em></em></p>
  <p>text <dfn><em></em></dfn></p>

  <!-- can contain interactive -->
  <p><em><a>text</a></em></p>
  <p><dfn><em><a>text</a></em></dfn></p>

  <!-- cannot contain structured inline -->
  <p><em>text <ul><li>list</li></ul> <em>elem</em></em></p>
</body>
</html>