summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--chrome/browser/extensions/window_open_apitest.cc8
1 files changed, 7 insertions, 1 deletions
diff --git a/chrome/browser/extensions/window_open_apitest.cc b/chrome/browser/extensions/window_open_apitest.cc
index b448aee..d9b93b6 100644
--- a/chrome/browser/extensions/window_open_apitest.cc
+++ b/chrome/browser/extensions/window_open_apitest.cc
@@ -156,7 +156,13 @@ IN_PROC_BROWSER_TEST_F(ExtensionApiTest, WindowOpenPopupSmall) {
EXPECT_TRUE(WaitForTabsAndPopups(browser(), num_tabs, num_popups, 0));
}
-IN_PROC_BROWSER_TEST_F(ExtensionApiTest, PopupBlockingExtension) {
+// Disabled on Windows. Often times out or fails: crbug.com/177530
+#if defined(OS_WIN)
+#define MAYBE_PopupBlockingExtension DISABLED_PopupBlockingExtension
+#else
+#define MAYBE_PopupBlockingExtension PopupBlockingExtension
+#endif
+IN_PROC_BROWSER_TEST_F(ExtensionApiTest, MAYBE_PopupBlockingExtension) {
host_resolver()->AddRule("*", "127.0.0.1");
ASSERT_TRUE(StartTestServer());