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

Unified Diff: content/public/android/javatests/src/org/chromium/content/browser/input/ImeTest.java

Issue 2664603002: Remove replaceComposition() calls in finishComposingText. (Closed)
Patch Set: Rebase Created 3 years, 10 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: 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 561a2d967cce810899fa1b1e553fb6777ec9f9e2..4e56ad91be3d19bda9ce67f8d7429eec348c83e8 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
@@ -1211,9 +1211,8 @@ public class ImeTest extends ContentShellTestBase {
finishComposingText();
waitAndVerifyUpdateSelection(1, 1, 1, -1, -1);
- // TODO(changwan): reduce the number of selection changes.
waitForEventLogs(
- "compositionupdate(a),input,compositionend(a),selectionchange,selectionchange");
+ "compositionend(a)");
}
@MediumTest
@@ -1228,9 +1227,7 @@ public class ImeTest extends ContentShellTestBase {
finishComposingText();
waitAndVerifyUpdateSelection(1, 1, 1, -1, -1);
- // TODO(changwan): reduce the number of selection changes.
- waitForEventLogs("compositionupdate(a),input,compositionend(a),selectionchange,"
- + "selectionchange,selectionchange");
+ waitForEventLogs("compositionend(a)");
}
@MediumTest

Powered by Google App Engine
This is Rietveld 408576698