summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/conformance-checkers/html/elements/hr/model-novalid.html
blob: 1c76bfb6b1aadc0d70a65e1bdf434342bed8f85c (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
25
26
27
28
<!DOCTYPE html>
<html>
<head>
  <meta charset=utf-8>
  <title>&lt;hr&gt;</title>
</head>
<body>
  <!-- is not structured inline -->
  <p>
    <ul>
      <li>
        <hr>
      </li>
    </ul>
  </p>

  <!-- is not strictly inline -->
  <p><dfn>text
    <hr>
  </dfn></p>

  <!-- must be empty -->
  <hr>
    <p>p1</p>
  
  <hr><em>text</em>
</body>
</html>