summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/conformance-checkers/xhtml/elements/ol/031-isvalid.xhtml
blob: 341b94d576e5a48f61d4a482b7988b6e7c1f98e8 (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
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <title>Ordered List: &lt;ol&gt; &lt;li&gt;</title>
</head>
<body>
  <!-- is block -->
  <ol class="class" id="id" xml:lang="en" start="05">
    <li class="class" id="id2" xml:lang="en" value="9">text</li>
  </ol>

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

  <!-- can contain structured inline -->
  <ol>
    <li>some <em>text</em>
	  <pre>more text</pre>
    </li>
  </ol>

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

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