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

  <!-- is strictly inline -->
  <p><dfn><small class="class" 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>