Chromium Code Reviews| Index: android_webview/javatests/src/org/chromium/android_webview/test/AwImeTest.java |
| diff --git a/android_webview/javatests/src/org/chromium/android_webview/test/AwImeTest.java b/android_webview/javatests/src/org/chromium/android_webview/test/AwImeTest.java |
| index e06e32c535bb03eb3bc353c11c44efd4396cf5c7..2d1d7b8477910cb36d1771b87261fc4b6ba90b31 100644 |
| --- a/android_webview/javatests/src/org/chromium/android_webview/test/AwImeTest.java |
| +++ b/android_webview/javatests/src/org/chromium/android_webview/test/AwImeTest.java |
| @@ -134,4 +134,19 @@ public class AwImeTest extends AwTestBase { |
| focusOnWebViewAndEnableEditing(); |
| waitForNonNullInputConnection(); |
| } |
| + |
| + /** |
| + * Tests that moving from WebView to EditText keeps the keyboard showing. |
| + */ |
| + // https://crbug.com/636237 |
| + @SmallTest |
| + @Feature({"AndroidWebView", "TextInput"}) |
| + public void testMoveFromWebViewtoEditText() throws Throwable { |
| + loadContentEditableBody(); |
| + focusOnWebViewAndEnableEditing(); |
| + waitForNonNullInputConnection(); |
| + |
| + focusOnEditTextAndShowKeyboard(); |
| + waitForNonNullInputConnection(); |
|
Changwan Ryu
2016/10/19 05:10:21
Is this really testing something? Does this test f
yabinh
2016/10/24 01:40:57
Yes. If will fail if we keep the old logic.
As we
|
| + } |
| } |