summaryrefslogtreecommitdiff
path: root/tests/fixtures/reftests/bugs/642-nested-tspan-dx-dy.svg
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@gnome.org>2022-11-28 13:18:54 -0600
committerFederico Mena Quintero <federico@gnome.org>2022-11-28 13:18:54 -0600
commitf4b0f4c155a0f6859cda9ef3ae4f5f9fcef398d4 (patch)
tree4b061240d5d380ba7dd2dcb6c7ced96ec80ebd9e /tests/fixtures/reftests/bugs/642-nested-tspan-dx-dy.svg
parent2f91a47f18e80b654cd8b81c6a62059aa46d0fb9 (diff)
downloadlibrsvg-f4b0f4c155a0f6859cda9ef3ae4f5f9fcef398d4.tar.gz
reference tests: Rename test files that start with a bug number
Part-of: <https://gitlab.gnome.org/GNOME/librsvg/-/merge_requests/776>
Diffstat (limited to 'tests/fixtures/reftests/bugs/642-nested-tspan-dx-dy.svg')
-rw-r--r--tests/fixtures/reftests/bugs/642-nested-tspan-dx-dy.svg17
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/fixtures/reftests/bugs/642-nested-tspan-dx-dy.svg b/tests/fixtures/reftests/bugs/642-nested-tspan-dx-dy.svg
deleted file mode 100644
index 175d00c8..00000000
--- a/tests/fixtures/reftests/bugs/642-nested-tspan-dx-dy.svg
+++ /dev/null
@@ -1,17 +0,0 @@
-<svg width="500" height="500" xmlns="http://www.w3.org/2000/svg" version="1.1">
- <rect x="0" y="0" width="500" height="500" fill="white"/>
-
- <!-- with buggy #642 these will overlap -->
- <text x="100" y="100" fill="black" style="font-family: sans-serif; font-size: 20px;">
- <tspan x="100" y="100" dy="0"><tspan>one</tspan></tspan>
- <tspan x="100" y="100" dy="20"><tspan>two</tspan></tspan>
- <tspan x="100" y="100" dy="40"><tspan>three</tspan></tspan>
- </text>
-
- <!-- but these won't, note the whitespace inside the outermost tspans -->
- <text x="100" y="200" fill="black" style="font-family: sans-serif; font-size: 20px;">
- <tspan x="100" y="200" dy="0"> <tspan>one</tspan></tspan>
- <tspan x="100" y="200" dy="20"> <tspan>two</tspan></tspan>
- <tspan x="100" y="200" dy="40"> <tspan>three</tspan></tspan>
- </text>
-</svg>