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="50" height="50" fill="green"> |
| 5 <animate id="anim" attributeName="visibility" to="visible" begin="0s" end="2
s" /> |
| 6 <set attributeName="x" to="100" begin="anim.endEvent" /> |
| 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> |
OLD | NEW |