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

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

Issue 2681023003: Remove replaceComposition() calls in finishComposingText. (Closed)
Patch Set: 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 8b16ed9338effead8f88e12988076d94a94d47c4..ab7c2c97ac3a6d339666c4de0ac014060b0cacc2 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
@@ -1213,9 +1213,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
@@ -1230,9 +1229,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