summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/conformance-checkers/xhtml/elements/strong/008-isvalid.xhtml
blob: 1ecc22f83348dd67bdc972b49e3de578d4d45296 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <title>&lt;small&gt;</title>
</head>
<body>
  <!-- is structured inline -->
  <p><small class="class" xml:lang="en">text</small></p>

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

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

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