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

Unified Diff: content/browser/site_per_process_browsertest.cc

Issue 1885683004: Disable TextInputStateChangesAfterRendererCrashes on Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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/browser/site_per_process_browsertest.cc
diff --git a/content/browser/site_per_process_browsertest.cc b/content/browser/site_per_process_browsertest.cc
index e00123815bc6da00b34ab33fa3ce1dd3fd9fb28e..c43730baee407023a14b2160b14a4292f9f56173 100644
--- a/content/browser/site_per_process_browsertest.cc
+++ b/content/browser/site_per_process_browsertest.cc
@@ -6339,8 +6339,17 @@ IN_PROC_BROWSER_TEST_F(SitePerProcessBrowserTest, TextInputStateChanged) {
EXPECT_EQ("fourth", web_contents()->GetTextInputState()->value);
}
+// Disable this test on Android (http://crbug.com/603209)
+#if defined(OS_ANDROID)
+#define MAYBE_TextInputStateChangesAfterRendererCrashes \
+ DISABLED_TextInputStateChangesAfterRendererCrashes
+#else
+#define MAYBE_TextInputStateChangesAfterRendererCrashes \
+ TextInputStateChangesAfterRendererCrashes
+#endif
+
IN_PROC_BROWSER_TEST_F(SitePerProcessBrowserTest,
- TextInputStateChangesAfterRendererCrashes) {
+ MAYBE_TextInputStateChangesAfterRendererCrashes) {
GURL main_url(
embedded_test_server()->GetURL("a.com", "/page_with_iframe.html"));
NavigateToURL(shell(), main_url);
« 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