aboutsummaryrefslogtreecommitdiff
path: root/tests/data/svg
diff options
context:
space:
mode:
authorViatrix2026-03-15 20:50:07 -0700
committerViatrix2026-03-15 20:50:07 -0700
commitfbcbb4eff55d0703f9fee526e5caea4744e931f7 (patch)
treecbf246a465fda28f39e4f04e8032ac639dcc9de6 /tests/data/svg
parent57aa116144d51783a12bb288554dd69846706386 (diff)
Target attribute (and others) now work.
Diffstat (limited to 'tests/data/svg')
-rw-r--r--tests/data/svg/target.svg8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/data/svg/target.svg b/tests/data/svg/target.svg
new file mode 100644
index 0000000..ed54e7c
--- /dev/null
+++ b/tests/data/svg/target.svg
@@ -0,0 +1,8 @@
+<svg width="200" height="100" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+ <a xlink:href="http://example.com/1" target="_top">
+ <rect x="25" y="25" width="50" height="50"/>
+ </a>
+ <a xlink:href="http://example.com/2" xlink:show="new">
+ <rect x="125" y="25" width="50" height="50"/>
+ </a>
+</svg>