| OLD | NEW |
| 1 <html xmlns="http://www.w3.org/1999/xhtml"> | 1 <html xmlns="http://www.w3.org/1999/xhtml"> |
| 2 <body> | 2 <body> |
| 3 This test is to ensure that we do not crash when clearing floats during SVG
load. | 3 This test is to ensure that we do not crash when clearing floats during SVG
load. |
| 4 <div id="log"><span style='color: red;'>FAIL:</span> Did not complete test</
div> | 4 <div id="log"><span style='color: red;'>FAIL:</span> Did not complete test</
div> |
| 5 <svg xmlns="http://www.w3.org/2000/svg"> | 5 <svg xmlns="http://www.w3.org/2000/svg"> |
| 6 <g> | 6 <g> |
| 7 <text style="float:right"></text> | 7 <text style="float:right"></text> |
| 8 <text></text> | 8 <text></text> |
| 9 </g> | 9 </g> |
| 10 </svg> | 10 </svg> |
| 11 <script> | 11 <script> |
| 12 if (window.testRunner) | 12 if (window.testRunner) |
| 13 testRunner.dumpAsText(); | 13 testRunner.dumpAsText(); |
| 14 var log = document.getElementById("log"); | 14 var log = document.getElementById("log"); |
| 15 while (log.childNodes.length) | 15 while (log.childNodes.length) |
| 16 log.removeChild(log.firstChild); | 16 log.removeChild(log.firstChild); |
| 17 var msg = document.createElementNS("http://www.w3.org/1999/xhtml", "span
"); | 17 var msg = document.createElementNS("http://www.w3.org/1999/xhtml", "span
"); |
| 18 msg.style.color = "green"; | 18 msg.style.color = "green"; |
| 19 msg.appendChild(document.createTextNode("PASS:")); | 19 msg.appendChild(document.createTextNode("PASS:")); |
| 20 log.appendChild(msg); | 20 log.appendChild(msg); |
| 21 log.appendChild(document.createTextNode(" Did not crash while rendering
the SVG.")); | 21 log.appendChild(document.createTextNode(" Did not crash while rendering
the SVG.")); |
| 22 </script> | 22 </script> |
| 23 </body> | 23 </body> |
| 24 </html> | 24 </html> |
| 25 | 25 |
| OLD | NEW |