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

Unified Diff: ui/views/controls/textfield/textfield_unittest.cc

Issue 2553603002: New accessibility virtual keyboard behavior in non-sticky mode. (Closed)
Patch Set: reupload Created 4 years 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
« ui/base/ime/input_method.h ('K') | « ui/views/controls/textfield/textfield.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/controls/textfield/textfield_unittest.cc
diff --git a/ui/views/controls/textfield/textfield_unittest.cc b/ui/views/controls/textfield/textfield_unittest.cc
index b27b90e41a3c9beb95f90336a69129a3b250adbd..24c12178ff8ee2cb722bcc459d4f8f8103f77f17 100644
--- a/ui/views/controls/textfield/textfield_unittest.cc
+++ b/ui/views/controls/textfield/textfield_unittest.cc
@@ -21,6 +21,7 @@
#include "base/strings/utf_string_conversions.h"
#include "build/build_config.h"
#include "ui/accessibility/ax_node_data.h"
+#include "ui/aura/window.h"
#include "ui/base/clipboard/clipboard.h"
#include "ui/base/clipboard/scoped_clipboard_writer.h"
#include "ui/base/dragdrop/drag_drop_types.h"
@@ -2844,6 +2845,46 @@ TEST_F(TextfieldTest, CursorBlinkRestartsOnInsertOrReplace) {
EXPECT_TRUE(test_api_->IsCursorBlinkTimerRunning());
}
+#if defined(OS_CHROMEOS)
+// Check that when accessibility virtual keyboard is enabled, windows are
+// shifted up when focused and restored when focus is lost.
+TEST_F(TextfieldTest, VirtualKeyboardFocusEnsureCaretInRect) {
+ InitTextfield();
+
+ // Enable new virtual keyboard behavior.
+ base::CommandLine* command_line = base::CommandLine::ForCurrentProcess();
+ if (!command_line->HasSwitch(::switches::kUseNewVirtualKeyboardBehavior)) {
+ command_line->AppendSwitch(::switches::kUseNewVirtualKeyboardBehavior);
+ }
+
+ aura::Window* root_window = widget_->GetNativeView()->GetRootWindow();
+ int keyboard_height = 200;
+ gfx::Rect root_bounds = root_window->bounds();
+ gfx::Rect orig_widget_bounds = gfx::Rect(0, 300, 400, 200);
+ gfx::Rect shifted_widget_bounds = gfx::Rect(0, 200, 400, 200);
+ gfx::Rect keyboard_view_bounds =
+ gfx::Rect(0, root_bounds.height() - keyboard_height, root_bounds.width(),
+ keyboard_height);
+
+ // Focus the window.
+ widget_->SetBounds(orig_widget_bounds);
+ input_method_->SetFocusedTextInputClient(textfield_);
+ EXPECT_EQ(widget_->GetNativeView()->bounds(), orig_widget_bounds);
+
+ // Simulate virtual keyboard.
+ input_method_->SetCoveredBounds(keyboard_view_bounds);
+
+ // Window should be shifted.
+ EXPECT_EQ(widget_->GetNativeView()->bounds(), shifted_widget_bounds);
+
+ // Change the focus.
+ input_method_->SetFocusedTextInputClient(nullptr);
+
+ // Window should be restored.
+ EXPECT_EQ(widget_->GetNativeView()->bounds(), orig_widget_bounds);
+}
+#endif // defined(OS_CHROMEOS)
+
class TextfieldTouchSelectionTest : public TextfieldTest {
protected:
// Simulates a complete tap.
« ui/base/ime/input_method.h ('K') | « ui/views/controls/textfield/textfield.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698