Title: [177139] branches/safari-600.3-branch/Source/WebKit/mac
Revision
177139
Author
[email protected]
Date
2014-12-11 00:50:53 -0800 (Thu, 11 Dec 2014)

Log Message

Merged r177132. rdar://problems/19213620

Modified Paths

Diff

Modified: branches/safari-600.3-branch/Source/WebKit/mac/ChangeLog (177138 => 177139)


--- branches/safari-600.3-branch/Source/WebKit/mac/ChangeLog	2014-12-11 08:50:49 UTC (rev 177138)
+++ branches/safari-600.3-branch/Source/WebKit/mac/ChangeLog	2014-12-11 08:50:53 UTC (rev 177139)
@@ -1,5 +1,23 @@
 2014-12-11  Matthew Hanson  <[email protected]>
 
+        Merge r177132. rdar://problem/19213620
+
+    2014-12-10  Timothy Horton  <[email protected]>
+
+            Copy and paste action menu items don't work on the Mozilla Midas demo in WebKit1
+            https://bugs.webkit.org/show_bug.cgi?id=139529
+            <rdar://problem/19213620>
+
+            Reviewed by Beth Dakin.
+
+            * WebView/WebActionMenuController.mm:
+            (-[WebActionMenuController _copySelection:]):
+            (-[WebActionMenuController _paste:]):
+            Use the copy: and paste: methods on WebView so that we traverse subviews
+            when trying to respond, otherwise these actions don't work in subframes.
+
+2014-12-11  Matthew Hanson  <[email protected]>
+
         Merge r177111. rdar://problem/19198388
 
     2014-12-10  Timothy Horton  <[email protected]>

Modified: branches/safari-600.3-branch/Source/WebKit/mac/WebView/WebActionMenuController.mm (177138 => 177139)


--- branches/safari-600.3-branch/Source/WebKit/mac/WebView/WebActionMenuController.mm	2014-12-11 08:50:49 UTC (rev 177138)
+++ branches/safari-600.3-branch/Source/WebKit/mac/WebView/WebActionMenuController.mm	2014-12-11 08:50:53 UTC (rev 177139)
@@ -590,7 +590,7 @@
 
 - (void)_copySelection:(id)sender
 {
-    [_webView _executeCoreCommandByName:@"copy" value:nil];
+    [_webView copy:self];
 }
 
 - (void)_lookupText:(id)sender
@@ -605,7 +605,7 @@
 
 - (void)_paste:(id)sender
 {
-    [_webView _executeCoreCommandByName:@"paste" value:nil];
+    [_webView paste:self];
 }
 
 - (void)_selectLookupText
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to