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

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

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

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

  <!-- cannot contain structured inline -->
</body>
</html>