summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/manual-tests/svg-link-hover-use.svg
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/manual-tests/svg-link-hover-use.svg')
-rw-r--r--Source/WebCore/manual-tests/svg-link-hover-use.svg9
1 files changed, 9 insertions, 0 deletions
diff --git a/Source/WebCore/manual-tests/svg-link-hover-use.svg b/Source/WebCore/manual-tests/svg-link-hover-use.svg
new file mode 100644
index 0000000..c39974d
--- /dev/null
+++ b/Source/WebCore/manual-tests/svg-link-hover-use.svg
@@ -0,0 +1,9 @@
+<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'>
+ <defs>
+ <rect id='rect' width='100' height="100" fill='blue' />
+ </defs>
+ <a xlink:href="http://www.webkit.org" >
+ <use xlink:href="rect" onmouseover="alert('foo')" />
+ </a>
+ <text y='120' x='10'>The above blue square is a link, the cursor should be a hand above it.</text>
+</svg>