Title: [181985] trunk/Source/WebKit2
Revision
181985
Author
bda...@apple.com
Date
2015-03-25 16:37:41 -0700 (Wed, 25 Mar 2015)

Log Message

REGRESSION (r181660): Force click url preview doesn't have a TextIndicator in Mail
https://bugs.webkit.org/show_bug.cgi?id=143064
-and corresponding-
rdar://problem/20251440

Reviewed by Tim Horton.

The TextIndicator was getting set to nil by the call to 
_dismissContentRelativeChildWindows in mouseDown. That line of code was added by 
http://trac.webkit.org/changeset/177242 to work around a bug in another component 
that has now been resolved, so it no longer appears to be necessary. 

* UIProcess/API/mac/WKView.mm:
(-[WKView mouseDown:]):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (181984 => 181985)


--- trunk/Source/WebKit2/ChangeLog	2015-03-25 23:37:04 UTC (rev 181984)
+++ trunk/Source/WebKit2/ChangeLog	2015-03-25 23:37:41 UTC (rev 181985)
@@ -1,3 +1,20 @@
+2015-03-25  Beth Dakin  <bda...@apple.com>
+
+        REGRESSION (r181660): Force click url preview doesn't have a TextIndicator in Mail
+        https://bugs.webkit.org/show_bug.cgi?id=143064
+        -and corresponding-
+        rdar://problem/20251440
+
+        Reviewed by Tim Horton.
+
+        The TextIndicator was getting set to nil by the call to 
+        _dismissContentRelativeChildWindows in mouseDown. That line of code was added by 
+        http://trac.webkit.org/changeset/177242 to work around a bug in another component 
+        that has now been resolved, so it no longer appears to be necessary. 
+
+        * UIProcess/API/mac/WKView.mm:
+        (-[WKView mouseDown:]):
+
 2015-03-25  Anders Carlsson  <ander...@apple.com>
 
         Add network and application cache directories to WebsiteDataStore

Modified: trunk/Source/WebKit2/UIProcess/API/mac/WKView.mm (181984 => 181985)


--- trunk/Source/WebKit2/UIProcess/API/mac/WKView.mm	2015-03-25 23:37:04 UTC (rev 181984)
+++ trunk/Source/WebKit2/UIProcess/API/mac/WKView.mm	2015-03-25 23:37:41 UTC (rev 181985)
@@ -1367,7 +1367,6 @@
     [self _setMouseDownEvent:event];
     _data->_ignoringMouseDraggedEvents = NO;
 
-    [self _dismissContentRelativeChildWindows];
 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 101000
     [_data->_actionMenuController wkView:self willHandleMouseDown:event];
 #endif
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to