summaryrefslogtreecommitdiff
path: root/tests/ref/html/enum-par.html
blob: 60d4592b7d3425d2864e79db7d783cc2277dd7b3 (plain) (blame)
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
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
  </head>
  <body>
    <div>
      <ol>
        <li>Hello</li>
        <li>World</li>
      </ol>
    </div>
    <div>
      <ol>
        <li>
          <p>Hello</p>
          <p>From</p>
        </li>
        <li>World</li>
      </ol>
    </div>
    <div>
      <ol>
        <li>
          <p>Hello</p>
          <p>From</p>
          <p>The</p>
        </li>
        <li>
          <p>World</p>
        </li>
      </ol>
    </div>
  </body>
</html>