Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(576)

Unified Diff: chrome/test/data/gtk_key_bindings_test_gtkrc

Issue 7669040: content: Move render_widget_host_view_gtk to content/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: chromeos fix. Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/chrome_switches.cc ('k') | content/browser/renderer_host/gtk_im_context_wrapper.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/gtk_key_bindings_test_gtkrc
diff --git a/chrome/test/data/gtk_key_bindings_test_gtkrc b/chrome/test/data/gtk_key_bindings_test_gtkrc
deleted file mode 100644
index 812971c8ed368164cdd6908dbf6a135138126f04..0000000000000000000000000000000000000000
--- a/chrome/test/data/gtk_key_bindings_test_gtkrc
+++ /dev/null
@@ -1,83 +0,0 @@
-# A keybinding set for testing GtkKeyBindingsHandler.
-# chrome/browser/render_host/gtk_key_bindings_handler_unittest.cc and this
-# file must be kept in sync.
-# This file covers all key bindings supported by GtkKeyBindingsHandler.
-
-binding "gtk-key-bindings-handler"
-{
- # Test "move-cursor"
- bind "<ctrl>1" {
- "move-cursor" (logical-positions, -2, 0)
- "move-cursor" (logical-positions, 2, 0)
- "move-cursor" (visual-positions, -1, 1)
- "move-cursor" (visual-positions, 1, 1)
- "move-cursor" (words, -1, 0)
- "move-cursor" (words, 1, 0)
- "move-cursor" (display-lines, -1, 0)
- "move-cursor" (display-lines, 1, 0)
- "move-cursor" (display-line-ends, -1, 0)
- "move-cursor" (display-line-ends, 1, 0)
- "move-cursor" (paragraph-ends, -1, 0)
- "move-cursor" (paragraph-ends, 1, 0)
- "move-cursor" (pages, -1, 0)
- "move-cursor" (pages, 1, 0)
- "move-cursor" (buffer-ends, -1, 0)
- "move-cursor" (buffer-ends, 1, 0)
- }
-
- # Test "delete-from-cursor"
- bind "<ctrl>2" {
- "delete-from-cursor" (chars, -2)
- "delete-from-cursor" (chars, 2)
- "delete-from-cursor" (word-ends, -1)
- "delete-from-cursor" (word-ends, 1)
- "delete-from-cursor" (words, -1)
- "delete-from-cursor" (words, 1)
- "delete-from-cursor" (display-lines, -1)
- "delete-from-cursor" (display-lines, 1)
- "delete-from-cursor" (display-line-ends, -1)
- "delete-from-cursor" (display-line-ends, 1)
- "delete-from-cursor" (paragraph-ends, -1)
- "delete-from-cursor" (paragraph-ends, 1)
- "delete-from-cursor" (paragraphs, -1)
- "delete-from-cursor" (paragraphs, 1)
- }
-
- # Test backspace
- bind "<ctrl>3" {
- "backspace" ()
- }
-
- # Test copy-clipboard
- bind "<ctrl>4" {
- "copy-clipboard" ()
- }
-
- # Test cut-clipboard
- bind "<ctrl>5" {
- "cut-clipboard" ()
- }
-
- # Test insert-at-cursor
- bind "<ctrl>6" {
- "insert-at-cursor" ("hello")
- }
-
- # Test paste-clipboard
- bind "<ctrl>7" {
- "paste-clipboard" ()
- }
-
- # Test select-all
- bind "<ctrl>8" {
- "select-all" (0)
- "select-all" (1)
- }
-
- # Test set-anchor
- bind "<ctrl>9" {
- "set-anchor" ()
- }
-}
-
-class "GtkTextView" binding "gtk-key-bindings-handler"
« no previous file with comments | « chrome/common/chrome_switches.cc ('k') | content/browser/renderer_host/gtk_im_context_wrapper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698