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

Unified Diff: content/browser/frame_host/render_widget_host_view_guest_unittest.cc

Issue 2712713006: Disable RenderWidgetHostViewGuestTest.VisibilityTest on Windows (Closed)
Patch Set: Created 3 years, 10 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/frame_host/render_widget_host_view_guest_unittest.cc
diff --git a/content/browser/frame_host/render_widget_host_view_guest_unittest.cc b/content/browser/frame_host/render_widget_host_view_guest_unittest.cc
index 9a7c231347385e5ae029eadca0332bd0f20aa680..bfba0e346f3dedd4af988d1a11d301090a27b85b 100644
--- a/content/browser/frame_host/render_widget_host_view_guest_unittest.cc
+++ b/content/browser/frame_host/render_widget_host_view_guest_unittest.cc
@@ -114,7 +114,13 @@ class RenderWidgetHostViewGuestTest : public testing::Test {
} // namespace
-TEST_F(RenderWidgetHostViewGuestTest, VisibilityTest) {
+// Fails on Windows, crbug.com/695375.
+#if defined(OS_WIN)
+#define MAYBE_VisibilityTest DISABLED_VisibilityTest
+#else
+#define MAYBE_VisibilityTest VisibilityTest
+#endif
+TEST_F(RenderWidgetHostViewGuestTest, MAYBE_VisibilityTest) {
view_->Show();
ASSERT_TRUE(view_->IsShowing());
« 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