summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/conformance-checkers/html/elements/div/model-novalid.html
blob: a7d8e4f60d2e24f181f703a69fb273ea270f7ac1 (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
<!DOCTYPE html>
<html>
<head>
  <meta charset=utf-8>
  <title>&lt;div&gt;</title>
</head>
<body>
  <!-- is not strictly inline -->
  <p><dfn>text 
    <div>
      <p>text</p>
    </div>
  </dfn></p>

  <!-- is not structured inline -->
  <p>text 
    <div>
      <p>text</p>
    </div>
  </p>

  <!-- cannot contain inline -->
  <div>
    some <em>text</em>
  </div>
</body>
</html>