| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <body style="margin: 0px; padding: 0px;" onload="runRepaintTest()"> | 3 <body style="margin: 0px; padding: 0px;" onload="forceStyleRecalc();repaintTest(
);"> |
| 4 <div style="width: 100px; height: 100px;"></div> | 4 <div style="width: 100px; height: 100px;"></div> |
| 5 <svg id="svg1" xmlns="http://www.w3.org/2000/svg" width="400" height="400"> | 5 <svg id="svg1" xmlns="http://www.w3.org/2000/svg" width="400" height="400"> |
| 6 <rect width="100" height="100" fill="green"/> | 6 <rect width="100" height="100" fill="green"/> |
| 7 <svg id="svg2" x="100" y="100" width="300" height="300"> | 7 <svg id="svg2" x="100" y="100" width="300" height="300"> |
| 8 <rect width="100" height="100" fill="green"/> | 8 <rect width="100" height="100" fill="green"/> |
| 9 <svg id="svg3" x="100" y="100" width="200" height="200"> | 9 <svg id="svg3" x="100" y="100" width="200" height="200"> |
| 10 <rect width="100" height="100" fill="green"/> | 10 <rect width="100" height="100" fill="green"/> |
| 11 <svg id="svg4" x="100" y="100" width="100" height="100"> | 11 <svg id="svg4" x="100" y="100" width="100" height="100"> |
| 12 <rect width="100" height="100" fill="green"/> | 12 <rect width="100" height="100" fill="green"/> |
| 13 </svg> | 13 </svg> |
| (...skipping 24 matching lines...) Expand all Loading... |
| 38 | 38 |
| 39 shouldBeEqualToString('CTM1', '1, 0, 0, 1, 0, 100'); | 39 shouldBeEqualToString('CTM1', '1, 0, 0, 1, 0, 100'); |
| 40 shouldBeEqualToString('CTM2', '1, 0, 0, 1, 100, 200'); | 40 shouldBeEqualToString('CTM2', '1, 0, 0, 1, 100, 200'); |
| 41 shouldBeEqualToString('CTM3', '1, 0, 0, 1, 200, 300'); | 41 shouldBeEqualToString('CTM3', '1, 0, 0, 1, 200, 300'); |
| 42 shouldBeEqualToString('CTM4', '1, 0, 0, 1, 300, 400'); | 42 shouldBeEqualToString('CTM4', '1, 0, 0, 1, 300, 400'); |
| 43 debug(''); | 43 debug(''); |
| 44 } | 44 } |
| 45 | 45 |
| 46 </script> | 46 </script> |
| 47 <script src="../../../resources/js-test.js"></script> | 47 <script src="../../../resources/js-test.js"></script> |
| 48 <script src="../../../fast/repaint/resources/repaint.js"></script> | 48 <script src="../../../fast/repaint/resources/text-based-repaint.js"></script> |
| 49 <script src="../resources/testPageZoom.js"></script> | 49 <script src="../resources/testPageZoom.js"></script> |
| 50 | 50 |
| 51 </body> | 51 </body> |
| 52 </html> | 52 </html> |
| OLD | NEW |