summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/conformance-checkers/html/elements/ol/model-novalid.html
blob: 2b00a34e6c5d54d7031a987bb82004f0f7176af0 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html>
<head>
  <meta charset=utf-8>
  <title>Ordered List: &lt;ol&gt; &lt;li&gt;</title>
</head>
<body>
  <!-- is block -->
  <ol class="class" id="id" lang="en" start="05">
    <li class="class" id="id" lang="en" value="9">text</li>
  </ol>

  <!-- is structured inline -->
  <p>paragraph
    <ol class="class" id="id" lang="en" start="-8">
      <li class="class" id="id" lang="en" value="-19">text</li>
    </ol>
  </p>

  <!-- can be empty -->
  <ol></ol>
  <ol>
    <li></li>
    <li></li>
  </ol>

  <!-- cannot contain structured inline -->
  <ol>
    <li>some <em>text</em>
	  <pre>more text</pre>
    </li>
  </ol>
  <p>paragraph
    <ol>
      <li>some <em>text</em>
        <pre>more text</pre>
      </li>
    </ol>
  </p>

  <!-- can contain blocks -->
  <ol>
    <li>
      <p>some</p>
      <p>text</p>
    </li>
  </ol>

  <!-- can contain interactive -->
  <ol><li><a>text</a></li></ol>
  <p>paragraph
    <ol><li><a>text</a></li></ol>
  </p>
</body>
</html>