summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/conformance-checkers/html/elements/code/model-isvalid.html
blob: 0912e07d7d578ccdcc3744d336f2d1339f140c3a (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;code&gt;</title>
</head>
<body>
  <!-- is structured inline -->
  <p><code class="class" lang="en">text</code></p>

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

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

  <!-- can contain interactive -->
  <p><code><a>text</a></code></p>
  <p><dfn><code><a>text</a></code></dfn></p>
</body>
</html>