blob: 23f2b20f6cc6ed6897447a9af2affc2a213ab8e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<svg xmlns="http://www.w3.org/2000/svg" class="reftest-wait" style="font: 16px sans-serif">
<text x="100 150 200 250" y="50"><tspan>12</tspan>34</text>
<text x="100 150 200 250" y="100"><tspan display="none">12</tspan>34</text>
<text x="100 150 200 250" y="150">34</text>
<text x="100 150 200 250" y="200">34</text>
<text x="100 150 200 250 300 350" y="250"><tspan>12</tspan>56</text>
<text x="100 150 200 250 300 350" y="300"><tspan>12</tspan>56</text>
<text x="100 150 200 250" y="350"><tspan display="none"/>34</text>
<script>
function newTSpan(s) {
var e = document.createElementNS("http://www.w3.org/2000/svg", "tspan");
e.textContent = s;
return e;
}
function f() {
window.removeEventListener("MozAfterPaint", f);
var t = document.getElementsByTagName("text");
var e;
t[0].removeChild(t[0].firstChild);
t[1].removeChild(t[1].firstChild);
e = newTSpan("12");
t[2].insertBefore(e, t[2].firstChild);
e = newTSpan("12");
e.setAttribute("display", "none");
t[3].insertBefore(e, t[3].firstChild);
e = newTSpan("34");
t[4].firstChild.appendChild(e);
e = newTSpan("34");
e.setAttribute("display", "none");
t[5].firstChild.appendChild(e);
e = newTSpan("12");
t[6].firstChild.appendChild(e);
setTimeout(function() {
document.documentElement.removeAttribute("class");
}, 0);
}
window.addEventListener("MozAfterPaint", f, false);
</script>
</svg>
|