| OLD | NEW |
| 1 <?xml version="1.0" encoding="UTF-8"?> | 1 <?xml version="1.0" encoding="UTF-8"?> |
| 2 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Basic//EN" "http://www.w3.org/Graphics
/SVG/1.1/DTD/svg11-basic.dtd"> | 2 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Basic//EN" "http://www.w3.org/Graphics
/SVG/1.1/DTD/svg11-basic.dtd"> |
| 3 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlin
k" id="svg-root" width="100%" height="100%" viewBox="0 0 800 600" onload="runRe
paintAndPixelTest()"> | 3 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlin
k" id="svg-root" width="100%" height="100%" viewBox="0 0 800 600" onload="runRe
paintTest()"> |
| 4 <script xlink:href="../../fast/repaint/resources/text-based-repaint.js"/> | 4 <script xlink:href="../../fast/repaint/resources/repaint.js"/> |
| 5 | 5 |
| 6 <g id="content"/> | 6 <g id="content"/> |
| 7 | 7 |
| 8 <script> | 8 <script> |
| 9 window.testIsAsync = true; | 9 window.testIsAsync = true; |
| 10 var content = document.getElementById("content"); | 10 var content = document.getElementById("content"); |
| 11 | 11 |
| 12 function repaintTest() { | 12 function repaintTest() { |
| 13 window.testRunner.layoutAndPaintAsyncThen(createObject); | 13 window.testRunner.layoutAndPaintAsyncThen(createObject); |
| 14 } | 14 } |
| (...skipping 27 matching lines...) Expand all Loading... |
| 42 rect.setAttribute("fill", "red"); | 42 rect.setAttribute("fill", "red"); |
| 43 | 43 |
| 44 mask.appendChild(rect); | 44 mask.appendChild(rect); |
| 45 content.appendChild(mask); | 45 content.appendChild(mask); |
| 46 | 46 |
| 47 finishRepaintTest(); | 47 finishRepaintTest(); |
| 48 } | 48 } |
| 49 </script> | 49 </script> |
| 50 | 50 |
| 51 </svg> | 51 </svg> |
| OLD | NEW |