Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / text / clear-floats-crash.svg
blobe2418b97a344035548e76644b6ecf0fea81b7636
1 <html xmlns="http://www.w3.org/1999/xhtml">
2 <body>
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>
5 <svg xmlns="http://www.w3.org/2000/svg">
6 <g>
7 <text style="float:right"></text>
8 <text></text>
9 </g>
10 </svg>
11 <script>
12 if (window.testRunner)
13 testRunner.dumpAsText();
14 var log = document.getElementById("log");
15 while (log.childNodes.length)
16 log.removeChild(log.firstChild);
17 var msg = document.createElementNS("http://www.w3.org/1999/xhtml", "span");
18 msg.style.color = "green";
19 msg.appendChild(document.createTextNode("PASS:"));
20 log.appendChild(msg);
21 log.appendChild(document.createTextNode(" Did not crash while rendering the SVG."));
22 </script>
23 </body>
24 </html>