blob: 3fdaae774c7844054068ea4e2780aa3005fbd124 [file] [log] [blame]
<!DOCTYPE html>
<html>
<script src="../../resources/js-test-pre.js"></script>
<script>
window.jsTestIsAsync = true;
if (window.testRunner)
testRunner.waitUntilDone();
document.addEventListener("DOMCharacterDataModified", function() {
document.body.innerHTML = "PASS. WebKit didn't crash.";
gc();
finishJSTest();
}, true);
document.write("A<br>");
document.designMode = "on";
document.execCommand("SelectAll");
document.execCommand("InsertHTML", false, 4);
</script>
<script src="../../resources/js-test-post.js"></script>
</html>