| Index: ui/views/cocoa/bridged_native_widget_unittest.mm
|
| diff --git a/ui/views/cocoa/bridged_native_widget_unittest.mm b/ui/views/cocoa/bridged_native_widget_unittest.mm
|
| index e6afebc157d5d52d857f29e80ac6f3cd5f1f243c..61b7f498124920fdfb0e6de59f7b51db3d2f4ee0 100644
|
| --- a/ui/views/cocoa/bridged_native_widget_unittest.mm
|
| +++ b/ui/views/cocoa/bridged_native_widget_unittest.mm
|
| @@ -1001,6 +1001,9 @@ TEST_F(BridgedNativeWidgetTest, TextInput_DeleteToEndOfParagraph) {
|
|
|
| // Test move commands against expectations set by |dummy_text_view_|.
|
| TEST_F(BridgedNativeWidgetTest, TextInput_MoveEditingCommands) {
|
| + // Broken on 10.9. http://crbug.com/621734.
|
| + if (base::mac::IsOSMavericks())
|
| + return;
|
| TestEditingCommands(kMoveActions);
|
| }
|
|
|
| @@ -1014,6 +1017,9 @@ TEST_F(BridgedNativeWidgetTest,
|
|
|
| // Test delete commands against expectations set by |dummy_text_view_|.
|
| TEST_F(BridgedNativeWidgetTest, TextInput_DeleteCommands) {
|
| + // Broken on 10.9. http://crbug.com/621734.
|
| + if (base::mac::IsOSMavericks())
|
| + return;
|
| TestEditingCommands(kDeleteActions);
|
| }
|
|
|
|
|