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

Unified Diff: content/browser/plugin_browsertest.cc

Issue 10399103: Disable PluginTest.AlertInWindowMessage on Win (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 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/plugin_browsertest.cc
diff --git a/content/browser/plugin_browsertest.cc b/content/browser/plugin_browsertest.cc
index 5e1f8b122c2346870ef457b675a68290bf3c0f4a..6e704e107658c1187aabde0a5d26a8c09ffa22e3 100644
--- a/content/browser/plugin_browsertest.cc
+++ b/content/browser/plugin_browsertest.cc
@@ -289,7 +289,12 @@ IN_PROC_BROWSER_TEST_F(PluginTest, CreateInstanceInPaint) {
}
// Tests that putting up an alert in response to a paint doesn't deadlock.
-IN_PROC_BROWSER_TEST_F(PluginTest, FAILS_AlertInWindowMessage) {
+#if defined(OS_WIN)
+#define MAYBE_AlertInWindowMessage DISABLED_AlertInWindowMessage
+#else
+#define MAYBE_AlertInWindowMessage AlertInWindowMessage
+#endif
+IN_PROC_BROWSER_TEST_F(PluginTest, MAYBE_AlertInWindowMessage) {
ui_test_utils::NavigateToURL(
browser(), GetURL("alert_in_window_message.html"));
« 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