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

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

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

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

</body>
</html>