Index: content/public/android/junit/src/org/chromium/content/browser/input/ThreadedInputConnectionTest.java |
diff --git a/content/public/android/junit/src/org/chromium/content/browser/input/ThreadedInputConnectionTest.java b/content/public/android/junit/src/org/chromium/content/browser/input/ThreadedInputConnectionTest.java |
index 22d3a47eae9f44843cf85a1e2233a92e75fe0fd4..124e3259f300fd0b7d7993d50870ee54bdd92f72 100644 |
--- a/content/public/android/junit/src/org/chromium/content/browser/input/ThreadedInputConnectionTest.java |
+++ b/content/public/android/junit/src/org/chromium/content/browser/input/ThreadedInputConnectionTest.java |
@@ -23,6 +23,7 @@ import org.chromium.base.ThreadUtils; |
import org.chromium.base.test.util.Feature; |
import org.chromium.testing.local.LocalRobolectricTestRunner; |
import org.junit.Before; |
+import org.junit.Ignore; |
import org.junit.Test; |
import org.junit.runner.RunWith; |
import org.mockito.InOrder; |
@@ -156,6 +157,7 @@ public class ThreadedInputConnectionTest { |
@Test |
@Feature({"TextInput"}) |
+ @Ignore("crbug/632792") |
public void testFailToRequestToRenderer() { |
when(mImeAdapter.requestTextInputStateUpdate()).thenReturn(false); |
// Should not hang here. Return null to indicate failure. |
@@ -164,6 +166,7 @@ public class ThreadedInputConnectionTest { |
@Test |
@Feature({"TextInput"}) |
+ @Ignore("crbug/632792") |
public void testRendererCannotUpdateState() { |
when(mImeAdapter.requestTextInputStateUpdate()).thenReturn(true); |
// We found that renderer cannot update state, e.g., due to a crash. |