Title: [210654] branches/safari-603-branch/Source/WebKit2
Revision
210654
Author
matthew_han...@apple.com
Date
2017-01-12 08:45:51 -0800 (Thu, 12 Jan 2017)

Log Message

Merge r210525. rdar://problem/29931470

Modified Paths

Diff

Modified: branches/safari-603-branch/Source/WebKit2/ChangeLog (210653 => 210654)


--- branches/safari-603-branch/Source/WebKit2/ChangeLog	2017-01-12 16:45:48 UTC (rev 210653)
+++ branches/safari-603-branch/Source/WebKit2/ChangeLog	2017-01-12 16:45:51 UTC (rev 210654)
@@ -1,5 +1,23 @@
 2017-01-12  Matthew Hanson  <matthew_han...@apple.com>
 
+        Merge r210525. rdar://problem/29931470
+
+    2017-01-09  Enrica Casucci  <enr...@apple.com>
+
+            Selection animation flashing on editable content when zooming.
+            https://bugs.webkit.org/show_bug.cgi?id=166863
+            rdar://problem/29931470
+
+            Reviewed by Tim Horton.
+
+            Implementing _allowAnimatedUpdateSelectionRectView and returning NO,
+            prevents the selection animation in UIKit.
+
+            * UIProcess/ios/WKContentViewInteraction.mm:
+            (-[WKContentView _allowAnimatedUpdateSelectionRectViews]):
+
+2017-01-12  Matthew Hanson  <matthew_han...@apple.com>
+
         Merge r210281. rdar://problem/29849769
 
     2017-01-04  Jeremy Jones  <jere...@apple.com>

Modified: branches/safari-603-branch/Source/WebKit2/UIProcess/ios/WKContentViewInteraction.mm (210653 => 210654)


--- branches/safari-603-branch/Source/WebKit2/UIProcess/ios/WKContentViewInteraction.mm	2017-01-12 16:45:48 UTC (rev 210653)
+++ branches/safari-603-branch/Source/WebKit2/UIProcess/ios/WKContentViewInteraction.mm	2017-01-12 16:45:51 UTC (rev 210654)
@@ -2748,6 +2748,11 @@
 // Keyboard interaction
 // UITextInput protocol implementation
 
+- (BOOL)_allowAnimatedUpdateSelectionRectViews
+{
+    return NO;
+}
+
 - (void)beginSelectionChange
 {
     [self.inputDelegate selectionWillChange:self];
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to