summaryrefslogtreecommitdiff
path: root/tests/ref/html/par-semantic-html.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/par-semantic-html.html
parent467968af0788a3059e1bed47f9daee846f5b3904 (diff)
Semantic paragraphs (#5746)
Diffstat (limited to 'tests/ref/html/par-semantic-html.html')
-rw-r--r--tests/ref/html/par-semantic-html.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/ref/html/par-semantic-html.html b/tests/ref/html/par-semantic-html.html
new file mode 100644
index 00000000..09c7d2fd
--- /dev/null
+++ b/tests/ref/html/par-semantic-html.html
@@ -0,0 +1,16 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ </head>
+ <body>
+ <h2>Heading is no paragraph</h2>
+ <p>I'm a paragraph.</p>
+ <div>I'm not.</div>
+ <div>
+ <p>We are two.</p>
+ <p>So we are paragraphs.</p>
+ </div>
+ </body>
+</html>