blob: cb3044efd09db5ecf3d17fd562d4fdaf9cc4e59c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<svg xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
class="reftest-wait">
<path id="path"/>
<text>
<textPath xlink:href="#path">f</textPath>
<textPath xlink:href="#path">f</textPath>
</text>
<script>
function boom()
{
var path = document.getElementById("path");
path.parentNode.removeChild(path);
document.documentElement.removeAttribute("class");
}
window.addEventListener("load", boom, false);
</script>
</svg>
|