Title: [176775] trunk/Source/WebKit/mac
Revision
176775
Author
[email protected]
Date
2014-12-03 18:28:57 -0800 (Wed, 03 Dec 2014)

Log Message

Implement action menus for tel: URLs
https://bugs.webkit.org/show_bug.cgi?id=139240
<rdar://problem/19115662>

Reviewed by Anders Carlsson.

* WebView/WebActionMenuController.mm:
(-[WebActionMenuController _defaultMenuItemsForDataDetectableLink]):
Make sure to use the newly created currentActionContext.

Modified Paths

Diff

Modified: trunk/Source/WebKit/mac/ChangeLog (176774 => 176775)


--- trunk/Source/WebKit/mac/ChangeLog	2014-12-04 02:12:31 UTC (rev 176774)
+++ trunk/Source/WebKit/mac/ChangeLog	2014-12-04 02:28:57 UTC (rev 176775)
@@ -1,3 +1,15 @@
+2014-12-03  Timothy Horton  <[email protected]>
+
+        Implement action menus for tel: URLs
+        https://bugs.webkit.org/show_bug.cgi?id=139240
+        <rdar://problem/19115662>
+
+        Reviewed by Anders Carlsson.
+
+        * WebView/WebActionMenuController.mm:
+        (-[WebActionMenuController _defaultMenuItemsForDataDetectableLink]):
+        Make sure to use the newly created currentActionContext.
+
 2014-12-03  Beth Dakin  <[email protected]>
 
         <input> elements get whitespace action menu instead of editable text menu

Modified: trunk/Source/WebKit/mac/WebView/WebActionMenuController.mm (176774 => 176775)


--- trunk/Source/WebKit/mac/WebView/WebActionMenuController.mm	2014-12-04 02:12:31 UTC (rev 176774)
+++ trunk/Source/WebKit/mac/WebView/WebActionMenuController.mm	2014-12-04 02:28:57 UTC (rev 176775)
@@ -302,7 +302,7 @@
 
     [actionContext setHighlightFrame:elementBoundingBoxInWindowCoordinatesFromNode(node)];
 
-    return [[getDDActionsManagerClass() sharedManager] menuItemsForTargetURL:_hitTestResult.absoluteLinkURL() actionContext:actionContext.get()];
+    return [[getDDActionsManagerClass() sharedManager] menuItemsForTargetURL:_hitTestResult.absoluteLinkURL() actionContext:_currentActionContext.get()];
 }
 
 #pragma mark Image actions
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to