Title: [246425] trunk/Source/WebKit
Revision
246425
Author
[email protected]
Date
2019-06-13 20:06:20 -0700 (Thu, 13 Jun 2019)

Log Message

Fix selection hang in Mail
https://bugs.webkit.org/show_bug.cgi?id=198845
<rdar://problem/51388180>

Reviewed by Tim Horton.

SelectionDidChange requires a selectionWillChange in order to keep things in line.

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

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (246424 => 246425)


--- trunk/Source/WebKit/ChangeLog	2019-06-14 03:06:05 UTC (rev 246424)
+++ trunk/Source/WebKit/ChangeLog	2019-06-14 03:06:20 UTC (rev 246425)
@@ -1,3 +1,16 @@
+2019-06-13  Megan Gardner  <[email protected]>
+
+        Fix selection hang in Mail
+        https://bugs.webkit.org/show_bug.cgi?id=198845
+        <rdar://problem/51388180>
+
+        Reviewed by Tim Horton.
+
+        SelectionDidChange requires a selectionWillChange in order to keep things in line.
+
+        * UIProcess/ios/WKContentViewInteraction.mm:
+        (-[WKContentView _selectionChanged]):
+
 2019-06-13  Tim Horton  <[email protected]>
 
         No content shows up for WKWebView while locked even with _canShowWhileLocked is YES

Modified: trunk/Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm (246424 => 246425)


--- trunk/Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm	2019-06-14 03:06:05 UTC (rev 246424)
+++ trunk/Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm	2019-06-14 03:06:20 UTC (rev 246425)
@@ -5764,6 +5764,7 @@
     }
 #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