| <svg version="1.1" xmlns="http://www.w3.org/2000/svg">
|
| g.removeChild(g.firstChild);
|
| window.onload = function() {
|
| testRunner.waitUntilDone();
|
| g = document.getElementById("g1");
|
| if (location.hash != "#2") {
|
| location.hash = "#" + (parseInt(location.hash.slice(1)) + 1).toString();
|
| document.getElementById("g2").style.setProperty('cursor', 'url(#c2)');
|
| document.getElementById("t1").appendChild(document.createTextNode("PASS: Successfully changed cursors."));
|
| <cursor id="c1"></cursor>
|
| <g cursor="url(#c1)" id="g2"></g>
|
| <cursor id="c2"></cursor>
|
| <text id="t1" x="20" y="20"></text>
|