blob: fa8b3f3e5ac33a855011700a09ef88555fcdf2bb [file] [log] [blame]
<p>This tests for a crasher when deleting contents of a table cell. <a href="radr://problem/4845371">&lt;radr://problem/4845371&gt;</a></p>
<div id="div" contenteditable="true"><table><tr><td>foo <a href="http://www.google.com/">bar</a></td><td>baz</td></tr></table></div>
<script src="../editing.js"></script>
<script>
if (window.internals)
internals.settings.setEditingBehavior("win");
runDumpAsTextEditingTest(true);
function editingTest() {
var div = document.getElementById("div");
var sel = window.getSelection();
sel.collapse(div, 0);
moveSelectionForwardByCharacterCommand();
extendSelectionForwardByWordCommand();
extendSelectionForwardByWordCommand();
extendSelectionBackwardByCharacterCommand();
deleteCommand();
}
</script>