blob: bc6341f3bcc22404e981c69e58db62c385748a0d [file] [log] [blame]
<!doctype html>
<script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
<script src="../assert_selection.js"></script>
<script>
test(() => {
assert_selection(
'<div contenteditable><span>|XX</span></div>',
selection => {
selection.document.execCommand('insertText', false, 'a');
selection.document.execCommand('undo');
},
'<div contenteditable><span>|XX</span></div>');
}, 'Undo typing a character');
</script>