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

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

Issue 2530843003: Introduce InsertIncrementalTextCommand to respect existing style for composition (Closed)
Patch Set: Created 4 years, 1 month 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 52bfd210131e7df849cf0926dc6bc62c84d9a82a..f39314b8cf0e957aea99b99f24b7912ad0980e29 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
@@ -1275,7 +1275,7 @@ public class ImeTest extends ContentShellTestBase {
// TODO(changwan): reduce the number of selection changes
waitForEventLogs("keydown(229),compositionstart(),compositionupdate(a),input,keyup(229),"
+ "compositionupdate(a),input,compositionend(a),selectionchange,selectionchange,"
yabinh 2016/11/25 04:36:27 Selection change events are more than expected alr
- + "selectionchange,selectionchange,selectionchange");
+ + "selectionchange,selectionchange,selectionchange,selectionchange");
}
@MediumTest
@@ -1291,7 +1291,8 @@ public class ImeTest extends ContentShellTestBase {
// TODO(changwan): reduce the number of selection changes
waitForEventLogs("keydown(229),compositionstart(),compositionupdate(a),"
+ "input,keyup(229),compositionupdate(a),input,compositionend(a),selectionchange,"
- + "selectionchange,selectionchange,selectionchange,selectionchange");
+ + "selectionchange,selectionchange,selectionchange,selectionchange,"
+ + "selectionchange");
}
@MediumTest

Powered by Google App Engine
This is Rietveld 408576698