summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/conformance-checkers/html/elements/em/model-isvalid.html
blob: a473a3479ffa54afba02f00de70f2089bff87e6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!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>
</body>
</html>