Changeset 177152 in webkit
- Timestamp:
- Dec 11, 2014, 9:23:34 AM (10 years ago)
- Location:
- trunk/Source
- Files:
-
- 18 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r177151 r177152 1 2014-12-11 Alexey Proskuryakov <ap@apple.com> 2 3 REGRESSION (Async Text Input): Text input method state is not reset when reloading a page 4 https://bugs.webkit.org/show_bug.cgi?id=139504 5 rdar://problem/19034674 6 7 Reviewed by Enrica Casucci. 8 9 Explicitly notify EditorClient when a composition is voluntarily canceled by WebCore. 10 These are almost certainly not all the places where this happens, but this fixes the bug, 11 and lays the groundwork for using this new client call instead of didChangeSelection 12 hacks. 13 14 * editing/Editor.cpp: 15 (WebCore::Editor::clear): 16 (WebCore::Editor::cancelComposition): 17 * loader/EmptyClients.h: 18 * loader/FrameLoader.cpp: 19 (WebCore::FrameLoader::willTransitionToCommitted): 20 * page/EditorClient.h: 21 1 22 2014-12-10 Anders Carlsson <andersca@apple.com> 2 23 -
trunk/Source/WebCore/editing/Editor.cpp
r176780 r177152 1092 1092 void Editor::clear() 1093 1093 { 1094 m_compositionNode = 0; 1094 if (m_compositionNode) { 1095 m_compositionNode = nullptr; 1096 if (EditorClient* client = this->client()) 1097 client->discardedComposition(&m_frame); 1098 } 1095 1099 m_customCompositionUnderlines.clear(); 1096 1100 m_shouldStyleWithCSS = false; -
trunk/Source/WebCore/loader/EmptyClients.h
r176697 r177152 453 453 virtual void respondToChangedContents() override { } 454 454 virtual void respondToChangedSelection(Frame*) override { } 455 virtual void discardedComposition(Frame*) override { } 455 456 virtual void didEndEditing() override { } 456 457 virtual void willWriteSelectionToPasteboard(Range*) override { } -
trunk/Source/WebCore/loader/FrameLoader.cpp
r177035 r177152 530 530 // The text was already present in DOM, so it's better to confirm than to cancel the composition. 531 531 m_frame.editor().confirmComposition(); 532 if (EditorClient* editorClient = m_frame.editor().client()) 532 if (EditorClient* editorClient = m_frame.editor().client()) { 533 533 editorClient->respondToChangedSelection(&m_frame); 534 editorClient->discardedComposition(&m_frame); 535 } 534 536 } 535 537 } -
trunk/Source/WebCore/page/EditorClient.h
r175647 r177152 98 98 virtual void didWriteSelectionToPasteboard() = 0; 99 99 virtual void getClientPasteboardDataForRange(Range*, Vector<String>& pasteboardTypes, Vector<RefPtr<SharedBuffer>>& pasteboardData) = 0; 100 100 101 // Notify an input method that a composition was voluntarily discarded by WebCore, so that it could clean up too. 102 // This function is not called when a composition is closed per a request from an input method. 103 virtual void discardedComposition(Frame*) = 0; 104 101 105 virtual void registerUndoStep(PassRefPtr<UndoStep>) = 0; 102 106 virtual void registerRedoStep(PassRefPtr<UndoStep>) = 0; -
trunk/Source/WebKit/mac/ChangeLog
r177151 r177152 1 2014-12-11 Alexey Proskuryakov <ap@apple.com> 2 3 REGRESSION (Async Text Input): Text input method state is not reset when reloading a page 4 https://bugs.webkit.org/show_bug.cgi?id=139504 5 rdar://problem/19034674 6 7 Reviewed by Enrica Casucci. 8 9 Stub out new client calls, this patch does not attempt to make any changes on WebKit1. 10 11 * WebCoreSupport/WebEditorClient.h: 12 * WebCoreSupport/WebEditorClient.mm: 13 (WebEditorClient::discardedComposition): 14 1 15 2014-12-10 Anders Carlsson <andersca@apple.com> 2 16 -
trunk/Source/WebKit/mac/WebCoreSupport/WebEditorClient.h
r175647 r177152 111 111 virtual void respondToChangedContents() override; 112 112 virtual void respondToChangedSelection(WebCore::Frame*) override; 113 virtual void discardedComposition(WebCore::Frame*) override; 113 114 114 115 virtual void registerUndoStep(PassRefPtr<WebCore::UndoStep>) override; -
trunk/Source/WebKit/mac/WebCoreSupport/WebEditorClient.mm
r175647 r177152 352 352 WebThreadPostNotification(WebViewDidChangeSelectionNotification, m_webView, nil); 353 353 #endif 354 } 355 356 void WebEditorClient::discardedComposition(Frame*) 357 { 358 // The effects of this function are currently achieved via -[WebHTMLView _updateSelectionForInputManager]. 354 359 } 355 360 -
trunk/Source/WebKit/win/ChangeLog
r177151 r177152 1 2014-12-11 Alexey Proskuryakov <ap@apple.com> 2 3 REGRESSION (Async Text Input): Text input method state is not reset when reloading a page 4 https://bugs.webkit.org/show_bug.cgi?id=139504 5 rdar://problem/19034674 6 7 Reviewed by Enrica Casucci. 8 9 Stub out new client calls, this patch doesn't attempt to make any changes on Windows. 10 11 * WebCoreSupport/WebEditorClient.cpp: 12 (WebEditorClient::discardedComposition): 13 * WebCoreSupport/WebEditorClient.h: 14 1 15 2014-12-10 Anders Carlsson <andersca@apple.com> 2 16 -
trunk/Source/WebKit/win/WebCoreSupport/WebEditorClient.cpp
r176892 r177152 218 218 IWebNotificationCenter* notifyCenter = WebNotificationCenter::defaultCenterInternal(); 219 219 notifyCenter->postNotificationName(webViewDidChangeSelectionNotificationName, static_cast<IWebView*>(m_webView), 0); 220 } 221 222 void WebEditorClient::discardedComposition(Frame*) 223 { 224 notImplemented(); 220 225 } 221 226 -
trunk/Source/WebKit/win/WebCoreSupport/WebEditorClient.h
r171403 r177152 61 61 virtual void respondToChangedContents(); 62 62 virtual void respondToChangedSelection(WebCore::Frame*); 63 virtual void discardedComposition(WebCore::Frame*) override; 63 64 64 65 bool shouldDeleteRange(WebCore::Range*); -
trunk/Source/WebKit2/ChangeLog
r177151 r177152 1 2014-12-11 Alexey Proskuryakov <ap@apple.com> 2 3 REGRESSION (Async Text Input): Text input method state is not reset when reloading a page 4 https://bugs.webkit.org/show_bug.cgi?id=139504 5 rdar://problem/19034674 6 7 Reviewed by Enrica Casucci. 8 9 WebKit2 used to look at EditorState changes and guess when to cancel a composition. 10 This was quite unreliable, and needlessly complicated - WebCore knows when it decides 11 to destroy a composition, so it now explicitly notifies the clients. 12 13 * UIProcess/API/mac/WKView.mm: (-[WKView _processDidExit]): Address crashing case too. 14 * UIProcess/WebPageProxy.cpp: 15 (WebKit::WebPageProxy::resetStateAfterProcessExited): 16 * WebProcess/WebCoreSupport/WebEditorClient.cpp: 17 (WebKit::WebEditorClient::discardedComposition): 18 * WebProcess/WebCoreSupport/WebEditorClient.h: 19 * WebProcess/WebPage/WebPage.cpp: 20 (WebKit::WebPage::didChangeSelection): 21 (WebKit::WebPage::discardedComposition): 22 * WebProcess/WebPage/WebPage.h: 23 1 24 2014-12-10 Anders Carlsson <andersca@apple.com> 2 25 -
trunk/Source/WebKit2/UIProcess/API/mac/WKView.mm
r177116 r177152 2892 2892 - (void)_processDidExit 2893 2893 { 2894 [self _notifyInputContextAboutDiscardedComposition]; 2895 2894 2896 if (_data->_layerHostingView) 2895 2897 [self _setAcceleratedCompositingModeRootLayer:nil]; -
trunk/Source/WebKit2/UIProcess/WebPageProxy.cpp
r177123 r177152 4558 4558 m_isPageSuspended = false; 4559 4559 4560 m_editorState = EditorState(); 4561 #if PLATFORM(MAC) && !USE(ASYNC_NSTEXTINPUTCLIENT) 4562 m_temporarilyClosedComposition = false; 4563 #endif 4564 4560 4565 m_pageClient.processDidExit(); 4561 4566 … … 4577 4582 #if ENABLE(TOUCH_EVENTS) && !ENABLE(IOS_TOUCH_EVENTS) 4578 4583 m_touchEventQueue.clear(); 4579 #endif4580 4581 // FIXME: Reset m_editorState.4582 // FIXME: Notify input methods about abandoned composition.4583 #if PLATFORM(MAC) && !USE(ASYNC_NSTEXTINPUTCLIENT)4584 m_temporarilyClosedComposition = false;4585 4584 #endif 4586 4585 -
trunk/Source/WebKit2/WebProcess/WebCoreSupport/WebEditorClient.cpp
r175647 r177152 191 191 } 192 192 193 void WebEditorClient::discardedComposition(Frame*) 194 { 195 m_page->discardedComposition(); 196 } 197 193 198 void WebEditorClient::didEndEditing() 194 199 { -
trunk/Source/WebKit2/WebProcess/WebCoreSupport/WebEditorClient.h
r175647 r177152 65 65 virtual void respondToChangedContents() override; 66 66 virtual void respondToChangedSelection(WebCore::Frame*) override; 67 virtual void discardedComposition(WebCore::Frame*) override; 67 68 virtual void didEndEditing() override; 68 69 virtual void willWriteSelectionToPasteboard(WebCore::Range*) override; -
trunk/Source/WebKit2/WebProcess/WebPage/WebPage.cpp
r177118 r177152 4380 4380 Frame& frame = m_page->focusController().focusedOrMainFrame(); 4381 4381 // Abandon the current inline input session if selection changed for any other reason but an input method direct action. 4382 // FIXME: This logic should be in WebCore. 4382 4383 // FIXME: Many changes that affect composition node do not go through didChangeSelection(). We need to do something when DOM manipulation affects the composition, because otherwise input method's idea about it will be different from Editor's. 4383 4384 // FIXME: We can't cancel composition when selection changes to NoSelection, but we probably should. … … 4396 4397 } 4397 4398 4399 void WebPage::discardedComposition() 4400 { 4401 send(Messages::WebPageProxy::CompositionWasCanceled(editorState())); 4402 } 4403 4398 4404 void WebPage::setMinimumLayoutSize(const IntSize& minimumLayoutSize) 4399 4405 { -
trunk/Source/WebKit2/WebProcess/WebPage/WebPage.h
r177104 r177152 601 601 602 602 void didChangeSelection(); 603 void discardedComposition(); 603 604 604 605 #if PLATFORM(COCOA)
Note:
See TracChangeset
for help on using the changeset viewer.