blob: 83ce5c8261d3c019ae30fe2d6b12501c006a136a [file] [log] [blame]
<p>This page tests for a crash when adding an event listener to a doctype node.</p>
<p>If the test passes, you'll see a PASS message below.</p>
<pre>PASS: You didn't crash.</pre>
<script>
if (window.testRunner)
testRunner.dumpAsText();
var doctype = document.implementation.createDocumentType("html", 0, 0);
doctype.addEventListener("click", function () { }, false);
</script>