Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / polyline-points-crash.html
blobc0bd9fd2f468c0971de0c903e344a22259ba7b90
1 <script>
2 if (window.testRunner)
3 testRunner.dumpAsText();
5 var polyline = document.createElementNS("http://www.w3.org/2000/svg", "polyline");
6 try {
7 polyline.points.appendItem(null);
8 } catch (e) {
9 document.write("Caught exception: " + e + "<br>");
11 document.write("PASSED -- WebKit did not crash!")
12 </script>