dom/smil/crashtests/588287-2.svg

branch
TOR_BUG_9701
changeset 15
b8a032363ba2
equal deleted inserted replaced
-1:000000000000 0:ad1192d52d9a
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.setCurrentTime(0.2);
17 svg.appendChild(animate);
18 svg.setCurrentTime(0.0); // Trigger backwards seek
19 document.documentElement.removeAttribute("class");
20 }, 400);
21 }
22
23 window.addEventListener("load", function() { setTimeout(boom, 200) }, false);
24
25 </script>
26 </svg>

mercurial