| OLD | NEW |
| 1 <svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink="http://www.w3.org/1999/xlin
k" onload="runRepaintTest()">> | 1 <svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink="http://www.w3.org/1999/xlin
k" onload="runRepaintAndPixelTest()">> |
| 2 <script xlink:href="../../fast/repaint/resources/repaint.js"/> | 2 <script xlink:href="../../fast/repaint/resources/text-based-repaint.js"/> |
| 3 <defs> | 3 <defs> |
| 4 <linearGradient id='test'> | 4 <linearGradient id='test'> |
| 5 <stop id='stop' offset='0' stop-color='red' /> | 5 <stop id='stop' offset='0' stop-color='red' /> |
| 6 </linearGradient> | 6 </linearGradient> |
| 7 </defs> | 7 </defs> |
| 8 <rect fill="url(#test)" width='100' height='100' /> | 8 <rect fill="url(#test)" width='100' height='100' /> |
| 9 <script> | 9 <script> |
| 10 <![CDATA[ | 10 <![CDATA[ |
| 11 function repaintTest() { | 11 function repaintTest() { |
| 12 document.getElementById("stop").style.stopColor = 'green'; | 12 document.getElementById("stop").style.stopColor = 'green'; |
| 13 } | 13 } |
| 14 ]]> | 14 ]]> |
| 15 </script> | 15 </script> |
| 16 </svg> | 16 </svg> |
| OLD | NEW |