diff options
| author | Laurenz <laurmaedje@gmail.com> | 2025-01-24 13:11:26 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-24 12:11:26 +0000 |
| commit | 26e65bfef5b1da7f6c72e1409237cf03fb5d6069 (patch) | |
| tree | dae6f71efead43736202dd6aea933b95b1bc7a14 /tests/ref/html/terms-par.html | |
| parent | 467968af0788a3059e1bed47f9daee846f5b3904 (diff) | |
Semantic paragraphs (#5746)
Diffstat (limited to 'tests/ref/html/terms-par.html')
| -rw-r--r-- | tests/ref/html/terms-par.html | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/tests/ref/html/terms-par.html b/tests/ref/html/terms-par.html new file mode 100644 index 00000000..78bc5df1 --- /dev/null +++ b/tests/ref/html/terms-par.html @@ -0,0 +1,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> |
