summaryrefslogtreecommitdiffstats
path: root/content
diff options
context:
space:
mode:
authorajwong <ajwong@chromium.org>2014-08-27 15:49:16 -0700
committerCommit bot <commit-bot@chromium.org>2014-08-27 22:53:59 +0000
commitc58501b7feb5b3e83e889645e7550c0bb28e6544 (patch)
tree18b2aefbb444c49344337113377c542535933318 /content
parent11b8617a1b0c934d741aba34cb3c139a9fbee272 (diff)
downloadchromium_src-c58501b7feb5b3e83e889645e7550c0bb28e6544.zip
chromium_src-c58501b7feb5b3e83e889645e7550c0bb28e6544.tar.gz
chromium_src-c58501b7feb5b3e83e889645e7550c0bb28e6544.tar.bz2
Revert of Adding Select Action Bar Unit test case for input (patchset #3 of https://codereview.chromium.org/506423003/)
Reason for revert: See previous review message. Original issue's description: > [Android] Add unit tests for SelectActionBar appearance > > The SelectActionBar currently lacks test coverage. Add several test > cases covering the appearance of the bar when interacting with an input > field. > > Committed: https://chromium.googlesource.com/chromium/src/+/0bc56569817a24acea46748c599d77b59157d84d TBR=jdduke@chromium.org,aurimas@chromium.org,ajith.v@samsung.com NOTREECHECKS=true NOTRY=true Review URL: https://codereview.chromium.org/510953003 Cr-Commit-Position: refs/heads/master@{#292252}
Diffstat (limited to 'content')
-rw-r--r--content/public/android/javatests/src/org/chromium/content/browser/input/ImeTest.java23
1 files changed, 0 insertions, 23 deletions
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 fdef787..ffd4241 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
@@ -207,29 +207,6 @@ public class ImeTest extends ContentShellTestBase {
@SmallTest
@Feature({"TextInput"})
- public void testSelectActionBarClearedOnTappingInput() throws Exception {
- commitText(mConnection, "Sample Text", 1);
- DOMUtils.longPressNode(this, mContentViewCore, "input_text");
- assertWaitForKeyboardStatus(true);
- assertWaitForSelectActionBarStatus(true);
- DOMUtils.clickNode(this, mContentViewCore, "input_text");
- assertWaitForSelectActionBarStatus(false);
- }
-
- @SmallTest
- @Feature({"TextInput"})
- public void testSelectActionBarClearedOnTappingOutsideInput() throws Exception {
- commitText(mConnection, "Sample Text", 1);
- DOMUtils.longPressNode(this, mContentViewCore, "input_text");
- assertWaitForKeyboardStatus(true);
- assertWaitForSelectActionBarStatus(true);
- DOMUtils.clickNode(this, mContentViewCore, "input_radio");
- assertWaitForKeyboardStatus(false);
- assertWaitForSelectActionBarStatus(false);
- }
-
- @SmallTest
- @Feature({"TextInput"})
public void testImeCut() throws Exception {
commitText(mConnection, "snarful", 1);
waitAndVerifyEditableCallback(mConnection.mImeUpdateQueue, 1, "snarful", 7, 7, -1, -1);