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

Unified Diff: trunk/src/chrome/android/javatests/src/org/chromium/chrome/browser/contextmenu/ContextMenuTest.java

Issue 125083007: Revert 243124 "Turn on context menu tests" (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 11 months 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: trunk/src/chrome/android/javatests/src/org/chromium/chrome/browser/contextmenu/ContextMenuTest.java
===================================================================
--- trunk/src/chrome/android/javatests/src/org/chromium/chrome/browser/contextmenu/ContextMenuTest.java (revision 243146)
+++ trunk/src/chrome/android/javatests/src/org/chromium/chrome/browser/contextmenu/ContextMenuTest.java (working copy)
@@ -8,6 +8,7 @@
import android.content.ClipboardManager;
import android.content.Context;
import android.os.Build;
+import android.test.FlakyTest;
import android.test.suitebuilder.annotation.LargeTest;
import android.view.ContextMenu;
@@ -40,7 +41,9 @@
assertWaitForPageScaleFactorMatch(0.5f);
}
- @LargeTest
+ // http://crbug.com/326769
+ @FlakyTest
+ // @LargeTest
@Feature({"Browser", "Main"})
public void testCopyLinkURL() throws InterruptedException, TimeoutException {
TabBase tab = getActivity().getActiveTab();
@@ -51,7 +54,9 @@
assertStringContains("test_link.html", getClipboardText());
}
- @LargeTest
+ // http://crbug.com/326769
+ @FlakyTest
+ // @LargeTest
@Feature({"Browser"})
public void testCopyImageLinkCopiesLinkURL() throws InterruptedException, TimeoutException {
TabBase tab = getActivity().getActiveTab();
@@ -62,7 +67,9 @@
assertStringContains("test_link.html", getClipboardText());
}
- @LargeTest
+ // http://crbug.com/326769
+ @FlakyTest
+ // @LargeTest
@Feature({"Browser"})
public void testCopyLinkTextSimple() throws InterruptedException, TimeoutException {
TabBase tab = getActivity().getActiveTab();
@@ -74,7 +81,9 @@
getClipboardText());
}
- @LargeTest
+ // http://crbug.com/326769
+ @FlakyTest
+ // @LargeTest
@Feature({"Browser"})
public void testCopyLinkTextComplex() throws InterruptedException, TimeoutException {
TabBase tab = getActivity().getActiveTab();
@@ -86,7 +95,9 @@
"This is pretty extreme \n(newline). ", getClipboardText());
}
- @LargeTest
+ // http://crbug.com/326769
+ @FlakyTest
+ // @LargeTest
@Feature({"Browser"})
public void testCopyImageToClipboard() throws InterruptedException, TimeoutException {
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN) return;
@@ -102,7 +113,9 @@
assertEquals("Clipboard text is not correct", expectedUrl, getClipboardText());
}
- @LargeTest
+ // http://crbug.com/326769
+ @FlakyTest
+ // @LargeTest
@Feature({"Browser"})
public void testLongPressOnImage() throws InterruptedException, TimeoutException {
final TabBase tab = getActivity().getActiveTab();
@@ -132,7 +145,9 @@
assertEquals("Failed to navigate to the image", expectedUrl, actualUrl.get());
}
- @LargeTest
+ // http://crbug.com/326769
+ @FlakyTest
+ // @LargeTest
@Feature({"Browser"})
public void testLongPressOnImageLink() throws InterruptedException, TimeoutException {
final TabBase tab = getActivity().getActiveTab();
@@ -159,7 +174,9 @@
assertTrue("Navigated to the wrong page.", actualTitle.get().startsWith("test_image.png"));
}
- @LargeTest
+ // http://crbug.com/326769
+ @FlakyTest
+ // @LargeTest
@Feature({"Browser"})
public void testDismissContextMenuOnBack() throws InterruptedException, TimeoutException {
TabBase tab = getActivity().getActiveTab();
@@ -179,7 +196,9 @@
}));
}
- @LargeTest
+ // http://crbug.com/326769
+ @FlakyTest
+ // @LargeTest
@Feature({"Browser"})
public void testDismissContextMenuOnClick() throws InterruptedException, TimeoutException {
TabBase tab = getActivity().getActiveTab();
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698