Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 <?xml version="1.0"?>
2 <svg xmlns="http://www.w3.org/2000/svg" class="reftest-wait">
3 <script>
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);
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 }
23 window.addEventListener("load", function() { setTimeout(boom, 200) }, false);
25 </script>
26 </svg>