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

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

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

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