summaryrefslogtreecommitdiff
path: root/tests/ref/html/enum-par.html
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2025-01-24 13:11:26 +0100
committerGitHub <noreply@github.com>2025-01-24 12:11:26 +0000
commit26e65bfef5b1da7f6c72e1409237cf03fb5d6069 (patch)
treedae6f71efead43736202dd6aea933b95b1bc7a14 /tests/ref/html/enum-par.html
parent467968af0788a3059e1bed47f9daee846f5b3904 (diff)
Semantic paragraphs (#5746)
Diffstat (limited to 'tests/ref/html/enum-par.html')
-rw-r--r--tests/ref/html/enum-par.html36
1 files changed, 36 insertions, 0 deletions
diff --git a/tests/ref/html/enum-par.html b/tests/ref/html/enum-par.html
new file mode 100644
index 00000000..60d4592b
--- /dev/null
+++ b/tests/ref/html/enum-par.html
@@ -0,0 +1,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>