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

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