blob: 5b5e9810276d3abe453aa10b9140b11f692a7c25 [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</div>',
'<div>in the affairs of men<br>|Which taken at the flood</div>',
'</div>',
],
'Delete',
[
'<div contenteditable>',
'<div>There is a|Which taken at the flood</div>',
'</div>',
]);
</script>