diff options
author | Xisco Fauli <xiscofauli@libreoffice.org> | 2023-07-13 11:14:25 +0200 |
---|---|---|
committer | Xisco Fauli <xiscofauli@libreoffice.org> | 2023-07-13 23:09:53 +0200 |
commit | 1df7a1ac274db509f1a135b84a01ea51c4d0c1f9 (patch) | |
tree | 99bb8326500ebea6f22787646aa9dfa3d2982b09 /svgio/qa/cppunit/data | |
parent | 99f5bf03caa2538ca79b04e7fd017cebfb4c7a95 (diff) |
tdf#156269: dx and dy do not depend on x and y
Change-Id: I99be5aa45b333ec3825373c3a10be0e24d23cb29
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/154380
Tested-by: Jenkins
Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
Diffstat (limited to 'svgio/qa/cppunit/data')
-rw-r--r-- | svgio/qa/cppunit/data/tdf156269.svg | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/svgio/qa/cppunit/data/tdf156269.svg b/svgio/qa/cppunit/data/tdf156269.svg new file mode 100644 index 000000000000..e840b351d17d --- /dev/null +++ b/svgio/qa/cppunit/data/tdf156269.svg @@ -0,0 +1,8 @@ +<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"> + <!-- Some reference text --> + <text x="10%" y="50%" fill="grey">one</text> + + <!-- The same text with a shift --> + <text dx="50%" dy="50%" x="10%" y="50%">two</text> +</svg> + |