| OLD | NEW |
| 1 # A keybinding set for testing GtkKeyBindingsHandler. | 1 # A keybinding set for testing GtkKeyBindingsHandler. |
| 2 # chrome/browser/render_host/gtk_key_bindings_handler_unittest.cc and this | 2 # chrome/browser/render_host/gtk_key_bindings_handler_unittest.cc and this |
| 3 # file must be kept in sync. | 3 # file must be kept in sync. |
| 4 # This file covers all key bindings supported by GtkKeyBindingsHandler. | 4 # This file covers all key bindings supported by GtkKeyBindingsHandler. |
| 5 | 5 |
| 6 binding "gtk-key-bindings-handler" | 6 binding "gtk-key-bindings-handler" |
| 7 { | 7 { |
| 8 # Test "move-cursor" | 8 # Test "move-cursor" |
| 9 bind "<ctrl>1" { | 9 bind "<ctrl>1" { |
| 10 "move-cursor" (logical-positions, -2, 0) | 10 "move-cursor" (logical-positions, -2, 0) |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 "select-all" (1) | 74 "select-all" (1) |
| 75 } | 75 } |
| 76 | 76 |
| 77 # Test set-anchor | 77 # Test set-anchor |
| 78 bind "<ctrl>9" { | 78 bind "<ctrl>9" { |
| 79 "set-anchor" () | 79 "set-anchor" () |
| 80 } | 80 } |
| 81 } | 81 } |
| 82 | 82 |
| 83 class "GtkTextView" binding "gtk-key-bindings-handler" | 83 class "GtkTextView" binding "gtk-key-bindings-handler" |
| OLD | NEW |