| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script> | 3 <script> |
| 4 if (window.layoutTestController) { | 4 if (window.layoutTestController) { |
| 5 layoutTestController.dumpAsText(); | 5 layoutTestController.dumpAsText(); |
| 6 } | 6 } |
| 7 | 7 |
| 8 function onload() | 8 function onload() |
| 9 { | 9 { |
| 10 window.svgRoot = document.getElementById("svgRoot"); | 10 window.svgRoot = document.getElementById("svgRoot"); |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 </head> | 38 </head> |
| 39 <body onload="onload()"> | 39 <body onload="onload()"> |
| 40 Test for Bug 86119. Test passes if it does not crash and you see a green | 40 Test for Bug 86119. Test passes if it does not crash and you see a green |
| 41 rectangle above this text. | 41 rectangle above this text. |
| 42 <svg id="svgRoot" width="100" height="100" xmlns:svg="http://www.w3.org/2000
/svg"> | 42 <svg id="svgRoot" width="100" height="100" xmlns:svg="http://www.w3.org/2000
/svg"> |
| 43 <rect x="10" height="80" width="80" y="10" fill="green"/> | 43 <rect x="10" height="80" width="80" y="10" fill="green"/> |
| 44 </svg> | 44 </svg> |
| 45 </body> | 45 </body> |
| 46 </html> | 46 </html> |
| 47 | 47 |
| OLD | NEW |