Commit 3d9f9260 authored by caitkp@google.com's avatar caitkp@google.com

Re-disable flaky android InsertionHandle tests

TBR=dharcourt@chromium.org
BUG=169648

Review URL: https://codereview.chromium.org/16165003

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202614 0039d316-1c4b-4281-b951-d872f2087c98
parent 8114bec1
...@@ -12,6 +12,7 @@ import android.test.suitebuilder.annotation.MediumTest; ...@@ -12,6 +12,7 @@ import android.test.suitebuilder.annotation.MediumTest;
import android.text.Editable; import android.text.Editable;
import android.text.Selection; import android.text.Selection;
import org.chromium.base.test.util.DisabledTest;
import org.chromium.base.test.util.Feature; import org.chromium.base.test.util.Feature;
import org.chromium.base.test.util.UrlUtils; import org.chromium.base.test.util.UrlUtils;
import org.chromium.content.browser.ContentView; import org.chromium.content.browser.ContentView;
...@@ -95,6 +96,7 @@ public class InsertionHandleTest extends ContentShellTestBase { ...@@ -95,6 +96,7 @@ public class InsertionHandleTest extends ContentShellTestBase {
assertTrue(waitForHandleShowingEquals(false)); assertTrue(waitForHandleShowingEquals(false));
} }
@MediumTest @MediumTest
@Feature({"TextSelection", "TextInput", "Main"}) @Feature({"TextSelection", "TextInput", "Main"})
public void testDragInsertionHandle() throws Throwable { public void testDragInsertionHandle() throws Throwable {
...@@ -114,6 +116,7 @@ public class InsertionHandleTest extends ContentShellTestBase { ...@@ -114,6 +116,7 @@ public class InsertionHandleTest extends ContentShellTestBase {
assertWaitForHandleNear(dragToX, dragToY); assertWaitForHandleNear(dragToX, dragToY);
} }
@MediumTest @MediumTest
@Feature({"TextSelection", "TextInput", "Main"}) @Feature({"TextSelection", "TextInput", "Main"})
public void testPasteAtInsertionHandle() throws Throwable { public void testPasteAtInsertionHandle() throws Throwable {
...@@ -133,8 +136,12 @@ public class InsertionHandleTest extends ContentShellTestBase { ...@@ -133,8 +136,12 @@ public class InsertionHandleTest extends ContentShellTestBase {
assertTrue(waitForHandleShowingEquals(false)); assertTrue(waitForHandleShowingEquals(false));
} }
@MediumTest /**
@Feature({"TextSelection", "TextInput", "Main"}) * @MediumTest
* @Feature({"TextSelection", "TextInput", "Main"})
* http://crbug.com/169648
*/
@DisabledTest
public void testDragInsertionHandleInputText() throws Throwable { public void testDragInsertionHandleInputText() throws Throwable {
launchWithUrl(INPUT_TEXT_DATA_URL); launchWithUrl(INPUT_TEXT_DATA_URL);
...@@ -160,8 +167,12 @@ public class InsertionHandleTest extends ContentShellTestBase { ...@@ -160,8 +167,12 @@ public class InsertionHandleTest extends ContentShellTestBase {
assertWaitForHandleNear(initialX, initialY); assertWaitForHandleNear(initialX, initialY);
} }
@MediumTest /**
@Feature({"TextSelection", "TextInput", "Main"}) * @MediumTest
* @Feature({"TextSelection", "TextInput", "Main"})
* http://crbug.com/169648
*/
@DisabledTest
public void testDragInsertionHandleInputTextOutsideBounds() throws Throwable { public void testDragInsertionHandleInputTextOutsideBounds() throws Throwable {
launchWithUrl(INPUT_TEXT_DATA_URL); launchWithUrl(INPUT_TEXT_DATA_URL);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment