summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--chrome/android/javatests/src/org/chromium/chrome/browser/appmenu/AppMenuTest.java7
1 files changed, 7 insertions, 0 deletions
diff --git a/chrome/android/javatests/src/org/chromium/chrome/browser/appmenu/AppMenuTest.java b/chrome/android/javatests/src/org/chromium/chrome/browser/appmenu/AppMenuTest.java
index 0a70e14..5613e45 100644
--- a/chrome/android/javatests/src/org/chromium/chrome/browser/appmenu/AppMenuTest.java
+++ b/chrome/android/javatests/src/org/chromium/chrome/browser/appmenu/AppMenuTest.java
@@ -14,6 +14,7 @@ import android.widget.ListPopupWindow;
import android.widget.ListView;
import org.chromium.base.ThreadUtils;
+import org.chromium.base.test.util.DisabledTest;
import org.chromium.base.test.util.Feature;
import org.chromium.chrome.shell.ChromeShellActivity;
import org.chromium.chrome.shell.ChromeShellActivity.AppMenuHandlerFactory;
@@ -99,6 +100,7 @@ public class AppMenuTest extends ChromeShellTestBase {
*/
@SmallTest
@Feature({"Browser", "Main"})
+ @DisabledTest
public void testKeyboardMenuBoundaries() throws InterruptedException {
moveToBoundary(false, true);
assertEquals(getCount() - 1, getCurrentFocusedRow());
@@ -113,6 +115,7 @@ public class AppMenuTest extends ChromeShellTestBase {
*/
@SmallTest
@Feature({"Browser", "Main"})
+ @DisabledTest
public void testKeyboardMenuEnterOnOpen() throws InterruptedException {
hitEnterAndAssertAppMenuDismissed();
}
@@ -122,6 +125,7 @@ public class AppMenuTest extends ChromeShellTestBase {
*/
@SmallTest
@Feature({"Browser", "Main"})
+ @DisabledTest
public void testKeyboardEnterAfterMovePastTopItem() throws InterruptedException {
moveToBoundary(true, true);
assertEquals(0, getCurrentFocusedRow());
@@ -134,6 +138,7 @@ public class AppMenuTest extends ChromeShellTestBase {
*/
@SmallTest
@Feature({"Browser", "Main"})
+ @DisabledTest
public void testKeyboardEnterAfterMovePastBottomItem() throws InterruptedException {
moveToBoundary(false, true);
assertEquals(getCount() - 1, getCurrentFocusedRow());
@@ -146,6 +151,7 @@ public class AppMenuTest extends ChromeShellTestBase {
*/
@SmallTest
@Feature({"Browser", "Main"})
+ @DisabledTest
public void testKeyboardMenuEnterOnTopItemLandscape() throws InterruptedException {
getActivity().setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
moveToBoundary(true, false);
@@ -158,6 +164,7 @@ public class AppMenuTest extends ChromeShellTestBase {
*/
@SmallTest
@Feature({"Browser", "Main"})
+ @DisabledTest
public void testKeyboardMenuEnterOnTopItemPortrait() throws InterruptedException {
getActivity().setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
moveToBoundary(true, false);