| OLD | NEW |
| 1 <?xml version="1.0" standalone="no"?> | 1 <?xml version="1.0" standalone="no"?> |
| 2 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN" "http://www.w3.org/TR/2001/R
EC-SVG-20010904/DTD/svg10.dtd"> | 2 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN" "http://www.w3.org/TR/2001/R
EC-SVG-20010904/DTD/svg10.dtd"> |
| 3 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlin
k" viewBox="0 0 250 250" onload="runRepaintAndPixelTest()"> | 3 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlin
k" viewBox="0 0 250 250" onload="runRepaintTest()"> |
| 4 <script xlink:href="../../fast/repaint/resources/text-based-repaint.js"/> | 4 <script xlink:href="../../fast/repaint/resources/repaint.js"/> |
| 5 <script type="text/javascript"> | 5 <script type="text/javascript"> |
| 6 <![CDATA[ | 6 <![CDATA[ |
| 7 window.testIsAsync = true; | 7 window.testIsAsync = true; |
| 8 function repaintTest() { | 8 function repaintTest() { |
| 9 var elem = document.getElementById('use'); | 9 var elem = document.getElementById('use'); |
| 10 elem.setAttributeNS(null,'display','inline'); | 10 elem.setAttributeNS(null,'display','inline'); |
| 11 // FIXME: we need a better way of waiting for layout/repainting to happen | 11 // FIXME: we need a better way of waiting for layout/repainting to happen |
| 12 window.setTimeout("step2()", 1); | 12 window.setTimeout("step2()", 1); |
| 13 } | 13 } |
| 14 function step2() { | 14 function step2() { |
| (...skipping 23 matching lines...) Expand all Loading... |
| 38 </g> | 38 </g> |
| 39 <g transform="matrix(1 0 0 1 10 70)"> | 39 <g transform="matrix(1 0 0 1 10 70)"> |
| 40 <text font-family="'Courier'" font-size="12"> | 40 <text font-family="'Courier'" font-size="12"> |
| 41 | 41 |
| 42 <tspan x="0" y="0">For this test case to be successful, the</tspan> | 42 <tspan x="0" y="0">For this test case to be successful, the</tspan> |
| 43 <tspan x="0" y="15">box above must show text and a circle. </tspan> | 43 <tspan x="0" y="15">box above must show text and a circle. </tspan> |
| 44 <tspan x="0" y="30">Bug 14927</tspan> | 44 <tspan x="0" y="30">Bug 14927</tspan> |
| 45 </text> | 45 </text> |
| 46 </g> | 46 </g> |
| 47 </svg> | 47 </svg> |
| OLD | NEW |