summaryrefslogtreecommitdiff
path: root/tests/ref
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2025-06-26 15:44:45 +0200
committerGitHub <noreply@github.com>2025-06-26 13:44:45 +0000
commit9311f6f08eca583b6214834148c94685f0161c21 (patch)
tree3d217e63cbd2fd162abe98ba0f9818058c39dc27 /tests/ref
parent7420ec972ffd6e4893fa24d12992b375da6b11fa (diff)
Basic support for text decoration functions in HTML (#6510)
Diffstat (limited to 'tests/ref')
-rw-r--r--tests/ref/html/html-deco.html11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/ref/html/html-deco.html b/tests/ref/html/html-deco.html
new file mode 100644
index 00000000..87f2ab4c
--- /dev/null
+++ b/tests/ref/html/html-deco.html
@@ -0,0 +1,11 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ </head>
+ <body>
+ <p><s>Struck</s> <mark>Highlighted</mark> <span style="text-decoration: underline">Underlined</span> <span style="text-decoration: overline">Overlined</span></p>
+ <p><span style="text-decoration: overline"><span style="text-decoration: underline"><mark><s>Mixed</s></mark></span></span></p>
+ </body>
+</html>