summaryrefslogtreecommitdiff
path: root/tests/ref/html/terms-par.html
blob: 78bc5df164f2590b3320f5ca4e35f6979fc80d2b (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
37
38
39
40
41
42
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
  </head>
  <body>
    <div>
      <dl>
        <dt>Hello</dt>
        <dd>A</dd>
        <dt>World</dt>
        <dd>B</dd>
      </dl>
    </div>
    <div>
      <dl>
        <dt>Hello</dt>
        <dd>
          <p>A</p>
          <p>From</p>
        </dd>
        <dt>World</dt>
        <dd>B</dd>
      </dl>
    </div>
    <div>
      <dl>
        <dt>Hello</dt>
        <dd>
          <p>A</p>
          <p>From</p>
          <p>The</p>
        </dd>
        <dt>World</dt>
        <dd>
          <p>B</p>
        </dd>
      </dl>
    </div>
  </body>
</html>