blob: d919b866f669e52d6ef5a929437d37b6de287988 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg">
<script>
function init()
{
document.documentElement.unsuspendRedrawAll();
document.getElementsByTagName("text")[0].firstChild.data = "Quux";
}
window.addEventListener("load", init, false);
</script>
<text x="125" y="30">Foo</text>
</svg>
|