| svgNS = "http://www.w3.org/2000/svg"; |
| gc = window.gc || function() |
| for (var i = 0; i < 10000; ++i) |
| var s = new String("AAAA"); |
| window.onload = function() |
| testRunner.waitUntilDone(); |
| cursor = document.body.appendChild(document.createElementNS(svgNS, "cursor")); |
| element = document.body.appendChild(document.createElementNS(svgNS, "element")); |
| element.style.setProperty("cursor", "url(#cursor)"); |
| fakeCursor = document.body.insertBefore(document.createElementNS(svgNS, "cursor"), cursor); |
| fakeCursor.id = "cursor"; |
| element.style.removeProperty("cursor"); |
| document.body.removeChild(element); |
| setTimeout(finishTest, 0); |
| document.body.removeChild(cursor); |
| document.body.innerHTML = "PASS"; |