Title: [246665] trunk/Source/WebKit
Revision
246665
Author
[email protected]
Date
2019-06-20 17:50:07 -0700 (Thu, 20 Jun 2019)

Log Message

Remove change that was causing hangs
https://bugs.webkit.org/show_bug.cgi?id=199055
<rdar://problem/51820516>

Reviewed by Darin Adler.

This fix can sometimes cause deadlocks in the UIProcess.
We have a different fix that will go into UIKit <rdar://problem/51927701>.

* UIProcess/ios/WKContentViewInteraction.mm:
(-[WKContentView _selectionChanged]):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (246664 => 246665)


--- trunk/Source/WebKit/ChangeLog	2019-06-21 00:49:14 UTC (rev 246664)
+++ trunk/Source/WebKit/ChangeLog	2019-06-21 00:50:07 UTC (rev 246665)
@@ -1,3 +1,17 @@
+2019-06-20  Megan Gardner  <[email protected]>
+
+        Remove change that was causing hangs
+        https://bugs.webkit.org/show_bug.cgi?id=199055
+        <rdar://problem/51820516>
+
+        Reviewed by Darin Adler.
+
+        This fix can sometimes cause deadlocks in the UIProcess.
+        We have a different fix that will go into UIKit <rdar://problem/51927701>.
+
+        * UIProcess/ios/WKContentViewInteraction.mm:
+        (-[WKContentView _selectionChanged]):
+
 2019-06-20  Daniel Bates  <[email protected]>
 
         [iOS] Evernote crashes when creating a note

Modified: trunk/Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm (246664 => 246665)


--- trunk/Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm	2019-06-21 00:49:14 UTC (rev 246664)
+++ trunk/Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm	2019-06-21 00:50:07 UTC (rev 246665)
@@ -5775,9 +5775,6 @@
             [(id <UITextInputDelegatePrivate>)self.inputDelegate layoutHasChanged];
     }
 #endif
-
-    [self.inputDelegate selectionWillChange:self];
-    [self.inputDelegate selectionDidChange:self];
     
     [_webView _didChangeEditorState];
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to