blob: fe0d3ed4a46aedb4e2b28d2425baa9007383feea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<script>
function go() {
var b = document.getElementById("b")
c.setAttribute("refX", "0")
b.getCTM()
}
function eh1() {
c.addEventListener("DOMAttrModified", eh2)
}
function eh2() {
var f = document.getElementById("f")
d.replaceWith("")
f.before(a)
}
</script>
<body onload=go()>
<table background="X">A</table>
<svg id="a">
<line id="b">
<tspan id="d">
<textPath id="f">
<animateTransform id="c" onbegin="eh1()">
|