blob: a296fcc50b2206436317890610a944f0612c3c94 [file] [log] [blame]
<p>Tests for a crash when creating a link inside a region with a subtree modified event listener.</p>
<div contenteditable="true" id="div">This should be a link.</div>
<script>
if (window.layoutTestController)
layoutTestController.dumpAsText();
var div = document.getElementById("div");
div.addEventListener('DOMSubtreeModified', function () {;});
div.focus();
document.execCommand("SelectAll");
document.execCommand("CreateLink", false, "#");
</script>
PASS