OLD | NEW |
1 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlin
k" width="800" height="600" onload="runRepaintTest()"> | 1 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlin
k" width="800" height="600" onload="runRepaintAndPixelTest()"> |
2 » <script xlink:href="../../fast/repaint/resources/repaint.js"/> | 2 » <script xlink:href="../../fast/repaint/resources/text-based-repaint.js"/
> |
3 <script type="text/ecmascript"><![CDATA[ | 3 <script type="text/ecmascript"><![CDATA[ |
4 function repaintTest() { | 4 function repaintTest() { |
5 bounce = document.getElementById("bounce"); | 5 bounce = document.getElementById("bounce"); |
6 bounce.setAttribute("transform", "translate(50,50)"); | 6 bounce.setAttribute("transform", "translate(50,50)"); |
7 bounce.setAttribute("font-size", 110); | 7 bounce.setAttribute("font-size", 110); |
8 } | 8 } |
9 ]]></script> | 9 ]]></script> |
10 | 10 |
11 <text id="bounce" x="35" y="35" font-size="80" style="fill:red;stroke:navy;s
troke-width:5px;">Repaint me!</text> | 11 <text id="bounce" x="35" y="35" font-size="80" style="fill:red;stroke:navy;s
troke-width:5px;">Repaint me!</text> |
12 </svg> | 12 </svg> |
OLD | NEW |