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

Unified Diff: content/public/android/javatests/src/org/chromium/content/browser/ContentViewCoreSelectionTest.java

Issue 1766233004: Mark many ContentViewCoreSelectionTests flaky (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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: content/public/android/javatests/src/org/chromium/content/browser/ContentViewCoreSelectionTest.java
diff --git a/content/public/android/javatests/src/org/chromium/content/browser/ContentViewCoreSelectionTest.java b/content/public/android/javatests/src/org/chromium/content/browser/ContentViewCoreSelectionTest.java
index a5b0ed01addf1babfa24846a3b56f4e1a995e349..7a739095860047270eae66bcacc3401c9744336c 100644
--- a/content/public/android/javatests/src/org/chromium/content/browser/ContentViewCoreSelectionTest.java
+++ b/content/public/android/javatests/src/org/chromium/content/browser/ContentViewCoreSelectionTest.java
@@ -128,8 +128,12 @@ public class ContentViewCoreSelectionTest extends ContentShellTestBase {
assertTrue(mContentViewCore.hasSelection());
}
+ /*
@SmallTest
@Feature({"TextInput"})
+ https://crbug.com/592428
+ */
+ @FlakyTest
public void testPastePopupNotShownOnLongPressingNonEmptyInput() throws Throwable {
copyStringToClipboard("SampleTextToCopy");
DOMUtils.longPressNode(this, mContentViewCore, "empty_input_text");
@@ -139,8 +143,12 @@ public class ContentViewCoreSelectionTest extends ContentShellTestBase {
waitForPastePopupStatus(false);
}
+ /*
@SmallTest
@Feature({"TextInput"})
+ https://crbug.com/592428
+ */
+ @FlakyTest
public void testPastePopupClearedOnTappingEmptyInput() throws Throwable {
copyStringToClipboard("SampleTextToCopy");
DOMUtils.longPressNode(this, mContentViewCore, "empty_input_text");
@@ -149,8 +157,12 @@ public class ContentViewCoreSelectionTest extends ContentShellTestBase {
waitForPastePopupStatus(false);
}
+ /*
@SmallTest
@Feature({"TextInput"})
+ https://crbug.com/592428
+ */
+ @FlakyTest
public void testPastePopupClearedOnTappingNonEmptyInput() throws Throwable {
copyStringToClipboard("SampleTextToCopy");
DOMUtils.longPressNode(this, mContentViewCore, "empty_input_text");
@@ -159,8 +171,12 @@ public class ContentViewCoreSelectionTest extends ContentShellTestBase {
waitForPastePopupStatus(false);
}
+ /*
@SmallTest
@Feature({"TextInput"})
+ https://crbug.com/592428
+ */
+ @FlakyTest
public void testPastePopupClearedOnTappingOutsideInput() throws Throwable {
copyStringToClipboard("SampleTextToCopy");
DOMUtils.longPressNode(this, mContentViewCore, "empty_input_text");
@@ -169,8 +185,12 @@ public class ContentViewCoreSelectionTest extends ContentShellTestBase {
waitForPastePopupStatus(false);
}
+ /*
@SmallTest
@Feature({"TextInput"})
+ https://crbug.com/592428
+ */
+ @FlakyTest
public void testPastePopupClearedOnLongPressingOutsideInput() throws Throwable {
copyStringToClipboard("SampleTextToCopy");
DOMUtils.longPressNode(this, mContentViewCore, "empty_input_text");
@@ -179,8 +199,12 @@ public class ContentViewCoreSelectionTest extends ContentShellTestBase {
waitForPastePopupStatus(false);
}
+ /*
@SmallTest
@Feature({"TextInput"})
+ https://crbug.com/592428
+ */
+ @FlakyTest
public void testPastePopupNotShownOnLongPressingDisabledInput() throws Throwable {
copyStringToClipboard("SampleTextToCopy");
DOMUtils.longPressNode(this, mContentViewCore, "empty_input_text");
@@ -191,8 +215,12 @@ public class ContentViewCoreSelectionTest extends ContentShellTestBase {
assertFalse(mContentViewCore.hasInsertion());
}
+ /*
@SmallTest
@Feature({"TextInput"})
+ https://crbug.com/592428
+ */
+ @FlakyTest
public void testPastePopupDismissedOnDestroy() throws Throwable {
copyStringToClipboard("SampleTextToCopy");
DOMUtils.longPressNode(this, mContentViewCore, "empty_input_text");
« 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