summaryrefslogtreecommitdiff
path: root/tests/ref
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2025-01-23 23:18:02 +0100
committerGitHub <noreply@github.com>2025-01-23 22:18:02 +0000
commitcd044825fcb1651781f1dbcafac4dec8b216e370 (patch)
tree8d721ce7ce519fb6d9cb87c3adedc857236de450 /tests/ref
parent6fe1e20afb9e2fb276242613121206b0001cce82 (diff)
Handle boxes and blocks a bit better in HTML export (#5744)
Co-authored-by: Martin Haug <3874949+reknih@users.noreply.github.com>
Diffstat (limited to 'tests/ref')
-rw-r--r--tests/ref/html/block-html.html15
-rw-r--r--tests/ref/html/box-html.html12
2 files changed, 27 insertions, 0 deletions
diff --git a/tests/ref/html/block-html.html b/tests/ref/html/block-html.html
new file mode 100644
index 00000000..98d971b8
--- /dev/null
+++ b/tests/ref/html/block-html.html
@@ -0,0 +1,15 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ </head>
+ <body>
+ <p>
+ Paragraph
+ </p>
+ <div>
+ Div
+ </div>
+ </body>
+</html>
diff --git a/tests/ref/html/box-html.html b/tests/ref/html/box-html.html
new file mode 100644
index 00000000..5c970a6b
--- /dev/null
+++ b/tests/ref/html/box-html.html
@@ -0,0 +1,12 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ </head>
+ <body>
+ <p>
+ Text <span style="display: inline-block;">Span</span>.
+ </p>
+ </body>
+</html>