Test case: http://persistent.info/webkit/test-cases/selection-deletion.html 1. Press the "Select '1. One'" button (or select the text "1. One" without the trailing newline) 2. Press the "execCommand('delete')" button (or press the delete key) Expected result: The "1. One" text is gone, but the contenteditable is otherwise unaffected, i.e.: <empty line> 2. Two 3. Three Actual result: The latter two lines are combined into one, and the order is reversed: <empty line> 3. Three2. Two There appear to be several contributing factors in the test case: - The lines all have "position: relative" - There's a contenteditable=false "toolbar" div before before the first line - There can't be any intervening whitespace in the DOM between the first two lines (see the lack of newline in the test case) Bug 108987 may be related (in that it also involve contenteditable="false" elements)
Not a regression from Safari 6.
I am not able to reproduce this bug in Safari Technology Preview 152 and it does not misalign list item as mentioned in "Actual Result" and it matches with other browsers (Chrome Canary 107 and Firefox Nightly 107). Here is DOM View post steps for all browsers: <div id='editable' contenteditable='true'> ' ' <div class='toolbar'> 'Toolbar' </div> ' ' <div class='section' id='one'> <br/> </div> <div class='section'> '2. Two' </div> ' ' <div class='section'> '3. Three' </div> ' ' </div> I am going to mark this as "RESOLVED CONFIGURATION CHANGED", since original bug is not reproducible and all browsers match. Thanks!