blob: 7720671656a7d5ea46f854f9f563230dcd5dc385 [file] [log] [blame]
<!doctype html>
<script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
<script src="../assert_selection.js"></script>
<script>
selection_test(
[
'<div contenteditable>',
'<div>^There is a tide<br>|in the affairs of men</div>',
'</div>',
],
'Delete',
[
'<div contenteditable>',
'<div>|in the affairs of men</div>',
'</div>',
]);
</script>