summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/conformance-checkers/html/elements/abbr/model-isvalid.html
blob: 59518af28829e446b1edc9a592d0e7bab5c44dba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html>
<head>
  <meta charset=utf-8>
  <title>&lt;abbr&gt;</title>
</head>
<body>
  <!-- is structured inline -->
  <p><abbr class="class" lang="en" title=''>text</abbr></p>

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

  <!-- can be empty -->
  <p>text <abbr title=''></abbr></p>
  <p>text <dfn><abbr title=''></abbr></dfn></p>

  <!-- can contain interactive -->
  <p><abbr title=''><a>text</a></abbr></p>
  <p><dfn><abbr title=''><a>text</a></abbr></dfn></p>

  <!-- cannot contain structured inline -->
</body>
</html>