blob: 4419831d7fc0adb515fa4e2e2eb8a4ac2e61a947 [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>',
'<div><b>on^e</b></div><div><i>tw|o</i></div>',
'</div>',
].join(''),
'delete',
[
'<div contenteditable>',
'<div><b>on|</b><i>o</i></div>',
'</div>',
].join('')),
'Delete command should keep B and I');
</script>