| OLD | NEW |
| 1 <?xml version="1.0"?> | 1 <?xml version="1.0"?> |
| 2 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlin
k" onload="runRepaintTest()"> | 2 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlin
k" onload="forceStyleRecalc();repaintTest();"> |
| 3 <!-- This test verifies that foreignObject content does not have the zoom fa
ctor applied twice. --> | 3 <!-- This test verifies that foreignObject content does not have the zoom fa
ctor applied twice. --> |
| 4 | 4 |
| 5 <foreignObject width="800" height="600"> | 5 <foreignObject width="800" height="600"> |
| 6 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1
999/xlink"> | 6 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1
999/xlink"> |
| 7 <rect width="99" height="99" fill="red"/> | 7 <rect width="99" height="99" fill="red"/> |
| 8 </svg> | 8 </svg> |
| 9 </foreignObject> | 9 </foreignObject> |
| 10 | 10 |
| 11 <foreignObject width="800" height="600"> | 11 <foreignObject width="800" height="600"> |
| 12 <html xmlns="http://www.w3.org/1999/xhtml"> | 12 <html xmlns="http://www.w3.org/1999/xhtml"> |
| 13 <div style="background-color: red; width: 99px; height: 99px;"></div
> | 13 <div style="background-color: red; width: 99px; height: 99px;"></div
> |
| 14 </html> | 14 </html> |
| 15 </foreignObject> | 15 </foreignObject> |
| 16 | 16 |
| 17 <!-- After zooming, this rect should still be obscuring everything. --> | 17 <!-- After zooming, this rect should still be obscuring everything. --> |
| 18 <rect width="100" height="100" fill="green"/> | 18 <rect width="100" height="100" fill="green"/> |
| 19 | 19 |
| 20 <defs> | 20 <defs> |
| 21 <script>var zoomCount = 4;</script> | 21 <script>var zoomCount = 4;</script> |
| 22 <script xlink:href="../../../fast/repaint/resources/repaint.js"/> | 22 <script xlink:href="../../../fast/repaint/resources/text-based-repaint.j
s"/> |
| 23 <script xlink:href="../resources/testPageZoom.js"/> | 23 <script xlink:href="../resources/testPageZoom.js"/> |
| 24 </defs> | 24 </defs> |
| 25 </svg> | 25 </svg> |
| OLD | NEW |