| <html xmlns="http://www.w3.org/1999/xhtml">
|
| This test is to ensure that we do not crash when clearing floats during SVG load.
|
| <div id="log"><span style='color: red;'>FAIL:</span> Did not complete test</div>
|
| <svg xmlns="http://www.w3.org/2000/svg">
|
| <text style="float:right"></text>
|
| var log = document.getElementById("log");
|
| while (log.childNodes.length)
|
| log.removeChild(log.firstChild);
|
| var msg = document.createElementNS("http://www.w3.org/1999/xhtml", "span");
|
| msg.style.color = "green";
|
| msg.appendChild(document.createTextNode("PASS:"));
|
| log.appendChild(document.createTextNode(" Did not crash while rendering the SVG."));
|