1 <svg version=
"1.1" xmlns=
"http://www.w3.org/2000/svg">
5 g.removeChild(g.firstChild);
7 setTimeout(runTest(),
0);
12 window.onload = function() {
13 if (window.testRunner) {
14 testRunner.dumpAsText();
15 testRunner.waitUntilDone();
18 g = document.getElementById(
"g1");
19 if (location.hash !=
"#2") {
21 location.hash =
"#" + (parseInt(location.hash.slice(
1)) +
1).toString();
24 document.getElementById(
"g2").style.setProperty('cursor', 'url(#c2)');
25 setTimeout(runTest(),
0);
27 document.getElementById(
"t1").appendChild(document.createTextNode(
"PASS: Successfully changed cursors."));
28 if (window.testRunner)
29 testRunner.notifyDone();
34 <cursor id=
"c1"></cursor>
35 <g cursor=
"url(#c1)" id=
"g2"></g>
36 <cursor id=
"c2"></cursor>
37 <text id=
"t1" x=
"20" y=
"20"></text>