| Index: content/public/android/javatests/src/org/chromium/content/browser/input/ImeTest.java
|
| diff --git a/content/public/android/javatests/src/org/chromium/content/browser/input/ImeTest.java b/content/public/android/javatests/src/org/chromium/content/browser/input/ImeTest.java
|
| index c931600cd206190a7f6b75ae2c69beb930b47502..e90439b3e1320047eff9bf2491beed49dbaee7b4 100644
|
| --- a/content/public/android/javatests/src/org/chromium/content/browser/input/ImeTest.java
|
| +++ b/content/public/android/javatests/src/org/chromium/content/browser/input/ImeTest.java
|
| @@ -1326,28 +1326,30 @@ public class ImeTest extends ContentShellTestBase {
|
| }));
|
| }
|
|
|
| - // Tests that the method call order is kept.
|
| - // See crbug.com/601707 for details.
|
| + // Tests that the method call order is kept and get updates correctly.
|
| + // crbug.com/601707, crbug.com/643473
|
| @MediumTest
|
| @Feature({"TextInput"})
|
| - public void testSetSelectionCommitTextOrder() throws Exception {
|
| + public void testAsynchronousSequence() throws Exception {
|
| final ChromiumBaseInputConnection connection = mConnection;
|
| runBlockingOnImeThread(new Callable<Void>() {
|
| @Override
|
| public Void call() {
|
| + connection.commitText("hi ", 1);
|
| connection.beginBatchEdit();
|
| connection.commitText("hello world", 1);
|
| - connection.setSelection(6, 6);
|
| - connection.deleteSurroundingText(0, 5);
|
| + connection.setSelection(9, 9);
|
| + connection.deleteSurroundingText(3, 8);
|
| connection.commitText("'", 1);
|
| connection.commitText("world", 1);
|
| - connection.setSelection(7, 7);
|
| + connection.setSelection(10, 10);
|
| connection.setComposingText("", 1);
|
| connection.endBatchEdit();
|
| return null;
|
| }
|
| });
|
| - waitAndVerifyUpdateSelection(0, 7, 7, -1, -1);
|
| + waitAndVerifyUpdateSelection(0, 3, 3, -1, -1);
|
| + waitAndVerifyUpdateSelection(1, 10, 10, -1, -1);
|
| }
|
|
|
| private void performGo(TestCallbackHelperContainer testCallbackHelperContainer)
|
|
|