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

Unified Diff: views/controls/textfield/native_textfield_views_unittest.cc

Issue 6119003: views textfield: Handle ctrl and shift modifiers for Backspace and Delete (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: TODO: Undo/Redo Created 9 years, 11 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 | « views/controls/textfield/native_textfield_views.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: views/controls/textfield/native_textfield_views_unittest.cc
diff --git a/views/controls/textfield/native_textfield_views_unittest.cc b/views/controls/textfield/native_textfield_views_unittest.cc
index efa7eb12c32dbd72957fd3cf76afcf73096b15be..9fc883c073e1c61a7ba485aa8b8bb44d0d484ae3 100644
--- a/views/controls/textfield/native_textfield_views_unittest.cc
+++ b/views/controls/textfield/native_textfield_views_unittest.cc
@@ -250,6 +250,38 @@ TEST_F(NativeTextfieldViewsTest, InsertionDeletionTest) {
textfield_->SelectAll();
SendKeyEventToTextfieldViews(app::VKEY_K);
EXPECT_STR_EQ("k", textfield_->text());
+
+ // Delete the previous word from cursor.
+ textfield_->SetText(ASCIIToUTF16("one two three four"));
+ SendKeyEventToTextfieldViews(app::VKEY_END);
+ SendKeyEventToTextfieldViews(app::VKEY_BACK, false, true, false);
+ EXPECT_STR_EQ("one two three ", textfield_->text());
+
+ // Delete upto the beginning of the buffer from cursor in chromeos, do nothing
+ // in windows.
+ SendKeyEventToTextfieldViews(app::VKEY_LEFT, false, true, false);
+ SendKeyEventToTextfieldViews(app::VKEY_BACK, true, true, false);
+#if defined(OS_WIN)
+ EXPECT_STR_EQ("one two three ", textfield_->text());
+#else
+ EXPECT_STR_EQ("three ", textfield_->text());
+#endif
+
+ // Delete the next word from cursor.
+ textfield_->SetText(ASCIIToUTF16("one two three four"));
+ SendKeyEventToTextfieldViews(app::VKEY_HOME);
+ SendKeyEventToTextfieldViews(app::VKEY_DELETE, false, true, false);
+ EXPECT_STR_EQ(" two three four", textfield_->text());
+
+ // Delete upto the end of the buffer from cursor in chromeos, do nothing
+ // in windows.
+ SendKeyEventToTextfieldViews(app::VKEY_RIGHT, false, true, false);
+ SendKeyEventToTextfieldViews(app::VKEY_DELETE, true, true, false);
+#if defined(OS_WIN)
+ EXPECT_STR_EQ(" two three four", textfield_->text());
+#else
+ EXPECT_STR_EQ(" two", textfield_->text());
+#endif
}
TEST_F(NativeTextfieldViewsTest, PasswordTest) {
« no previous file with comments | « views/controls/textfield/native_textfield_views.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698