Changeset 27488 in webkit
- Timestamp:
- Nov 6, 2007, 2:28:59 PM (17 years ago)
- Location:
- trunk
- Files:
-
- 4 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r27486 r27488 1 2007-11-06 Justin Garcia <justin.garcia@apple.com> 2 3 Reviewed by Darin Adler. 4 5 <rdar://problem/5576619> REGRESSION: Caret disappears after deleting the last character in inline hole (15714) 6 7 * platform/mac/editing/input/5576619-expected.checksum: Added. 8 * platform/mac/editing/input/5576619-expected.png: Added. 9 * platform/mac/editing/input/5576619-expected.txt: Added. 10 * platform/mac/editing/input/5576619.html: Added. 11 * platform/mac/editing/input/text-input-controller-expected.txt: 12 1 13 2007-11-06 Dan Bernstein <mitz@apple.com> 2 14 -
trunk/LayoutTests/platform/mac/editing/input/text-input-controller-expected.txt
r27009 r27488 20 20 EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification 21 21 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification 22 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE 23 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification 24 EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification 25 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification 22 26 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 7 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE 23 27 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification … … 26 30 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE 27 31 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification 28 EDITING DELEGATE: shouldInsertText:Failure replacingDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document givenAction:WebViewInsertActionTyped 32 EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification 33 EDITING DELEGATE: shouldInsertText:Success replacingDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document givenAction:WebViewInsertActionTyped 29 34 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification 30 35 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 7 of #text > DIV > BODY > HTML > #document to 7 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE 31 36 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification 32 37 EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification 33 Failure 38 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 7 of #text > DIV > BODY > HTML > #document to 7 of #text > DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 7 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE 39 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification 40 Success -
trunk/WebCore/ChangeLog
r27486 r27488 1 2007-11-06 Justin Garcia <justin.garcia@apple.com> 2 3 Reviewed by Darin Adler. 4 5 <rdar://problem/5576619> 6 REGRESSION: Caret disappears after deleting the last character in inline hole (15714) 7 8 * editing/TypingCommand.cpp: 9 (WebCore::TypingCommand::deleteSelection): Like the other TypingCommands, including 10 both of the other deletion commands, call typingAddedToOpenCommand(), which takes 11 the command's endingSelection and sets it as selection. 12 1 13 2007-11-06 Dan Bernstein <mitz@apple.com> 2 14 -
trunk/WebCore/editing/TypingCommand.cpp
r27009 r27488 506 506 { 507 507 CompositeEditCommand::deleteSelection(smartDelete); 508 typingAddedToOpenCommand(); 508 509 } 509 510
Note:
See TracChangeset
for help on using the changeset viewer.