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

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