blob: c0bd9fd2f468c0971de0c903e344a22259ba7b90 [file] [log] [blame]
<script>
if (window.testRunner)
testRunner.dumpAsText();
var polyline = document.createElementNS("http://www.w3.org/2000/svg", "polyline");
try {
polyline.points.appendItem(null);
} catch (e) {
document.write("Caught exception: " + e + "<br>");
}
document.write("PASSED -- WebKit did not crash!")
</script>