OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE HTML> | |
2 <script> | |
3 if (window.testRunner) | |
4 testRunner.waitUntilDone(); | |
5 | |
6 window.onload = function() { | |
7 document.getElementById("path").pathSegList[2].y = 200; | |
8 requestAnimationFrame(function() { | |
9 if (window.testRunner) | |
10 testRunner.notifyDone(); | |
11 }); | |
12 }; | |
13 </script> | |
14 <svg height="200" width="300"> | |
15 <path id="path" d="M50,50 L100,50 L100,100 Z" style="fill:green;"/> | |
16 <use xlink:href="#path" x="100"/> | |
17 </svg> | |
OLD | NEW |