summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/conformance-checkers/html/elements/q/model-isvalid.html
blob: c8d8073749d7b1f946a6960f141c6945bd6bd873 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
  <meta charset=utf-8>
  <title>&lt;q&gt;</title>
</head>
<body>
  <!-- is structured inline -->
  <p><q cite="url" class="class" lang="en">text</q></p>

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

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

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

</body>
</html>