chromium/third_party/blink/web_tests/editing/deleting/delete-3928305-fix.html

<!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><p>foo</p>^bar|<p>baz</p></div></div>',
        'Delete',
        '<div contenteditable><p>foo</p>|<br><p>baz</p></div>');
}, 'Delete characters between blocks in block inserts BR.');
</script>