| OLD | NEW |
| 1 <svg version="1.1" baseProfile="basic" xmlns="http://www.w3.org/2000/svg" xmlns:
xlink="http://www.w3.org/1999/xlink" onload="runRepaintTest()"> | 1 <svg version="1.1" baseProfile="basic" xmlns="http://www.w3.org/2000/svg" xmlns:
xlink="http://www.w3.org/1999/xlink" 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 <g id="reference"> | 4 <g id="reference"> |
| 5 <rect x="240" y="1" width="239" height="358" /> | 5 <rect x="240" y="1" width="239" height="358" /> |
| 6 <circle cx="240" cy="1" width="39" height="58" /> | 6 <circle cx="240" cy="1" width="39" height="58" /> |
| 7 </g> | 7 </g> |
| 8 | 8 |
| 9 <script type="text/ecmascript"> | 9 <script type="text/ecmascript"> |
| 10 <![CDATA[ | 10 <![CDATA[ |
| 11 function repaintTest() { | 11 function repaintTest() { |
| 12 if (window.eventSender) { | 12 if (window.eventSender) { |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 testRunner.notifyDone(); | 61 testRunner.notifyDone(); |
| 62 } | 62 } |
| 63 ]]> | 63 ]]> |
| 64 </script> | 64 </script> |
| 65 </defs> | 65 </defs> |
| 66 | 66 |
| 67 <text x="100" y="50" id="status">Test failed.</text> | 67 <text x="100" y="50" id="status">Test failed.</text> |
| 68 <use id="use" xlink:href="#reference" onclick="test(evt)" fill="grey" /> | 68 <use id="use" xlink:href="#reference" onclick="test(evt)" fill="grey" /> |
| 69 <rect id="test-frame" x="1" y="1" width="478" height="358" fill="none" stroke=
"#000"/> | 69 <rect id="test-frame" x="1" y="1" width="478" height="358" fill="none" stroke=
"#000"/> |
| 70 </svg> | 70 </svg> |
| OLD | NEW |