|
1 <?xml version="1.0"?> |
|
2 <svg xmlns="http://www.w3.org/2000/svg" class="reftest-wait"> |
|
3 <script> |
|
4 |
|
5 function boom() |
|
6 { |
|
7 var animate = document.createElementNS("http://www.w3.org/2000/svg", "animate"); |
|
8 animate.setAttributeNS(null, "begin", "0.5s"); |
|
9 document.documentElement.appendChild(animate); |
|
10 |
|
11 setTimeout(function() { |
|
12 var g = document.createElement("g"); |
|
13 var svg = document.createElementNS("http://www.w3.org/2000/svg", "svg"); |
|
14 g.appendChild(svg); |
|
15 document.documentElement.appendChild(g); |
|
16 svg.appendChild(animate); |
|
17 document.documentElement.removeAttribute("class"); |
|
18 }, 400); |
|
19 } |
|
20 |
|
21 window.addEventListener("load", function() { setTimeout(boom, 200) }, false); |
|
22 |
|
23 </script> |
|
24 </svg> |