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

Unified Diff: chrome/browser/renderer_host/site_per_process_text_input_browsertest.cc

Issue 2779583002: Disable SitePerProcessTextInputManagerTest.TrackingFocusedElementForAllFrames (Closed)
Patch Set: Created 3 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: chrome/browser/renderer_host/site_per_process_text_input_browsertest.cc
diff --git a/chrome/browser/renderer_host/site_per_process_text_input_browsertest.cc b/chrome/browser/renderer_host/site_per_process_text_input_browsertest.cc
index 0b387f5fe36e3ea63615cff50f52053b42a92da1..97aa241f95a1f5c9ebdb0340e2cfe6fc720b00de 100644
--- a/chrome/browser/renderer_host/site_per_process_text_input_browsertest.cc
+++ b/chrome/browser/renderer_host/site_per_process_text_input_browsertest.cc
@@ -871,8 +871,16 @@ IN_PROC_BROWSER_TEST_F(SitePerProcessTextInputManagerTest,
// This test makes sure browser correctly tracks focused editable element inside
// each RenderFrameHost.
+// Test is flaky on ChromeOS. crbug.com/705203
+#if defined(OS_CHROMEOS)
+#define MAYBE_TrackingFocusedElementForAllFrames \
+ DISABLED_TrackingFocusedElementForAllFrames
+#else
+#define MAYBE_TrackingFocusedElementForAllFrames \
+ TrackingFocusedElementForAllFrames
+#endif
IN_PROC_BROWSER_TEST_F(SitePerProcessTextInputManagerTest,
- TrackingFocusedElementForAllFrames) {
+ MAYBE_TrackingFocusedElementForAllFrames) {
CreateIframePage("a(a, b(a))");
std::vector<content::RenderFrameHost*> frames{
GetFrame(IndexVector{}), GetFrame(IndexVector{0}),
« 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