| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <style> | 3 <style> |
| 4 body { | 4 body { |
| 5 margin: 0px; | 5 margin: 0px; |
| 6 width: 800px; | 6 width: 800px; |
| 7 height: 600px; | 7 height: 600px; |
| 8 } | 8 } |
| 9 | 9 |
| 10 object { | 10 object { |
| 11 width: 480px; | 11 width: 480px; |
| 12 height: 360px; | 12 height: 360px; |
| 13 } | 13 } |
| 14 </style> | 14 </style> |
| 15 </head> | 15 </head> |
| 16 <body onload="runRepaintTest()"> | 16 <body onload="forceStyleRecalc();repaintTest();"> |
| 17 <object data="resources/zoom-svg-as-object.svg" type="image/svg+xml"/> | 17 <object data="resources/zoom-svg-as-object.svg" type="image/svg+xml"/> |
| 18 </body> | 18 </body> |
| 19 | 19 |
| 20 <script>var zoomCount = 1; window.shouldZoomOut = true;</script> | 20 <script>var zoomCount = 1; window.shouldZoomOut = true;</script> |
| 21 <script src="../../../fast/repaint/resources/repaint.js"></script> | 21 <script src="../../../fast/repaint/resources/text-based-repaint.js"></script> |
| 22 <script src="../resources/testPageZoom.js"></script> | 22 <script src="../resources/testPageZoom.js"></script> |
| 23 | 23 |
| 24 </html> | 24 </html> |
| OLD | NEW |