OLD | NEW |
---|---|
(Empty) | |
1 <?xml version="1.0" encoding="UTF-8"?> | |
2 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/ SVG/1.1/DTD/svg11-tiny.dtd"> | |
3 <svg onload="loaded()" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://ww w.w3.org/1999/xlink"> | |
4 <rect x="0" y="0" width="100" height="100" fill="green"> | |
5 <animate id="anim" attributeName="visibility" to="visible" begin="0s" end="2 s" fill="freeze"/> | |
pdr.
2013/08/30 20:50:18
We like to try to have tests end with a green squa
| |
6 <set attributeName="width" to="500" begin="anim.beginEvent" /> | |
7 </rect> | |
8 <script> | |
9 if (window.testRunner) | |
10 testRunner.waitUntilDone(); | |
11 | |
12 function loaded() { | |
13 document.documentElement.setCurrentTime(2); | |
14 | |
15 if (window.testRunner) | |
16 setTimeout(function(){testRunner.notifyDone();}, 100); | |
17 } | |
18 </script> | |
19 </svg> | |
20 | |
OLD | NEW |