Title: [185088] trunk/Source/WebKit2
Revision
185088
Author
[email protected]
Date
2015-06-01 16:57:39 -0700 (Mon, 01 Jun 2015)

Log Message

[iOS] Hardware Keyboard: Command + left arrow does not work.
https://bugs.webkit.org/show_bug.cgi?id=145531
rdar://problem/18576402

Reviewed by Anders Carlsson.

We were calling a non existent command (moveToStartOfLine) instead of
moveToBeginningOfLine.

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

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (185087 => 185088)


--- trunk/Source/WebKit2/ChangeLog	2015-06-01 23:57:22 UTC (rev 185087)
+++ trunk/Source/WebKit2/ChangeLog	2015-06-01 23:57:39 UTC (rev 185088)
@@ -1,3 +1,17 @@
+2015-06-01  Enrica Casucci  <[email protected]>
+
+        [iOS] Hardware Keyboard: Command + left arrow does not work.
+        https://bugs.webkit.org/show_bug.cgi?id=145531
+        rdar://problem/18576402
+
+        Reviewed by Anders Carlsson.
+
+        We were calling a non existent command (moveToStartOfLine) instead of
+        moveToBeginningOfLine.
+
+        * UIProcess/ios/WKContentViewInteraction.mm:
+        (-[WKContentView _moveToStartOfLine:withHistory:]):
+
 2015-06-01  Brady Eidson  <[email protected]>
 
         Add WKTR support for "should open external URLs".

Modified: trunk/Source/WebKit2/UIProcess/ios/WKContentViewInteraction.mm (185087 => 185088)


--- trunk/Source/WebKit2/UIProcess/ios/WKContentViewInteraction.mm	2015-06-01 23:57:22 UTC (rev 185087)
+++ trunk/Source/WebKit2/UIProcess/ios/WKContentViewInteraction.mm	2015-06-01 23:57:39 UTC (rev 185088)
@@ -2695,7 +2695,7 @@
 
 - (UITextInputArrowKeyHistory *)_moveToStartOfLine:(BOOL) extending withHistory:(UITextInputArrowKeyHistory *)history
 {
-    [self executeEditCommandWithCallback:@"moveToStartOfLine"];
+    [self executeEditCommandWithCallback:@"moveToBeginningOfLine"];
     return nil;
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to