Disable PluginTest.AlertInWindowMessage on Win

BUG=128519

Review URL: https://chromiumcodereview.appspot.com/10399103

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138093 0039d316-1c4b-4281-b951-d872f2087c98
parent 5ace9f9a
...@@ -289,7 +289,12 @@ IN_PROC_BROWSER_TEST_F(PluginTest, CreateInstanceInPaint) { ...@@ -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. // 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( ui_test_utils::NavigateToURL(
browser(), GetURL("alert_in_window_message.html")); browser(), GetURL("alert_in_window_message.html"));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment