OLD | NEW |
1 <html xmlns="http://www.w3.org/1999/xhtml"> | 1 <html xmlns="http://www.w3.org/1999/xhtml"> |
2 <head> | 2 <head> |
3 <title>foreignObject can be styled</title> | 3 <title>foreignObject can be styled</title> |
4 <style type="text/css"> | 4 <style type="text/css"> |
5 p { color: navy; } | 5 p { color: navy; } |
6 div { text-align: center; } | 6 div { text-align: center; } |
7 </style> | 7 </style> |
8 </head> | 8 </head> |
9 <body onload="runRepaintTest()"> | 9 <body onload="forceStyleRecalc();repaintTest();"> |
10 <p>There should be a blue circle with the word "TEST" in it below.</p> | 10 <p>There should be a blue circle with the word "TEST" in it below.</p> |
11 <svg xmlns="http://www.w3.org/2000/svg" width="400" height="400"> | 11 <svg xmlns="http://www.w3.org/2000/svg" width="400" height="400"> |
12 <rect x="0" y="0" width="400" height="400" fill="blue"/> | 12 <rect x="0" y="0" width="400" height="400" fill="blue"/> |
13 <circle cx="200" cy="200" r="200" fill="navy"/> | 13 <circle cx="200" cy="200" r="200" fill="navy"/> |
14 <foreignObject x="0" y="175" width="400" height="50" color="white" font-size=
"50"> | 14 <foreignObject x="0" y="175" width="400" height="50" color="white" font-size=
"50"> |
15 <div xmlns="http://www.w3.org/1999/xhtml"> TEST </div> | 15 <div xmlns="http://www.w3.org/1999/xhtml"> TEST </div> |
16 </foreignObject> | 16 </foreignObject> |
17 </svg> | 17 </svg> |
18 | 18 |
19 <script>var zoomCount = 2;</script> | 19 <script>var zoomCount = 2;</script> |
20 <script src="../../../fast/repaint/resources/repaint.js"/> | 20 <script src="../../../fast/repaint/resources/text-based-repaint.js"/> |
21 <script src="../resources/testPageZoom.js"/> | 21 <script src="../resources/testPageZoom.js"/> |
22 </body> | 22 </body> |
23 </html> | 23 </html> |
OLD | NEW |