blob: 17ad99ca8f68b78138e68b4ffc932052c86d0cd0 (
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
|
<svg width="100%" height="100%" xmlns="http://www.w3.org/2000/svg" onload="setTimeout(boom, 30)" class="reftest-wait">
<script>
var originalRoot = document.documentElement;
var svgCircle;
function boom()
{
var SVG_NS = "http://www.w3.org/2000/svg";
var svgPolyline = document.createElementNS(SVG_NS, 'polyline');
svgCircle = document.createElementNS(SVG_NS, 'circle');
svgCircle.appendChild(svgPolyline);
document.removeChild(originalRoot);
document.appendChild(svgCircle);
setTimeout(restore, 30);
}
function restore()
{
// We have to put it the root element back in the document so that reftest.js
// sees the event for the removal of class="reftest-wait"!
document.removeChild(svgCircle);
document.appendChild(originalRoot);
document.documentElement.removeAttribute("class");
}
</script>
</svg>
|