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

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

Issue 2553603002: New accessibility virtual keyboard behavior in non-sticky mode. (Closed)
Patch Set: address the comments Created 3 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
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 858e7d51f2517f9eb67c6988f9f4a44735e3b1df..508ef28d8e7e520e7895919dfb588cfbcc215281 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"
@@ -2880,6 +2881,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_->SetOnScreenKeyboardBounds(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_base.cc ('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