haikuwebkit/LayoutTests/fast/dom/null-chardata-crash.html

16 lines
281 B
HTML

<html>
<body>
<p>To pass, this test should not crash</p>
<script>
if (window.testRunner)
window.testRunner.dumpAsText();
var o = document.createTextNode("test");
try {
o.data = null;
o.splitText(1);
} catch (e) {}
</script>
</body>
</html>