summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/conformance-checkers/html/elements/bdo/model-novalid.html
blob: 5dee57cf7a97215d9bc2a5d50a1970a4ebfbabbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<head>
  <meta charset=utf-8>
  <title>&lt;bdo&gt;</title>
</head>
<body>
  <!-- not a block -->
  <bdo dir="ltr">text</bdo>

  <!-- 'dir' attribute required -->
  <p><bdo>text</bdo></p>

  <!-- cannot contain structured inline -->
  <p><bdo dir="ltr"><ul><li>text</li></ul></bdo></p>

  <!-- cannot contain interactive if parent forbids interactive -->
  <p><a><bdo dir="ltr"><a>text</a></bdo></a></p>
  <p><a><dfn><bdo dir="ltr"><a>text</a></bdo></dfn></a></p>
</body>
</html>