Commit 51b765b0 authored by Daniel Connelly's avatar Daniel Connelly

Disable ManagePasswordsBubbleViewTest.FadeOnKey on Windows.

BUG=412340
R=vasilii@chromium.org
TBR=vasilii

Review URL: https://codereview.chromium.org/551393002

Cr-Commit-Position: refs/heads/master@{#293925}
parent b8acb852
...@@ -244,7 +244,13 @@ IN_PROC_BROWSER_TEST_F(ManagePasswordsBubbleViewTest, FadeOnClick) { ...@@ -244,7 +244,13 @@ IN_PROC_BROWSER_TEST_F(ManagePasswordsBubbleViewTest, FadeOnClick) {
EXPECT_TRUE(observer.was_called()); EXPECT_TRUE(observer.was_called());
} }
IN_PROC_BROWSER_TEST_F(ManagePasswordsBubbleViewTest, FadeOnKey) { // Crashes on Windows XP: http://crbug.com/412340
#if defined(OS_WIN)
#define MAYBE_FadeOnKey DISABLED_FadeOnKey
#else
#define MAYBE_FadeOnKey FadeOnKey
#endif
IN_PROC_BROWSER_TEST_F(ManagePasswordsBubbleViewTest, MAYBE_FadeOnKey) {
ui_test_utils::NavigateToURL( ui_test_utils::NavigateToURL(
browser(), browser(),
GURL("data:text/html;charset=utf-8,<input type=\"text\" autofocus>")); GURL("data:text/html;charset=utf-8,<input type=\"text\" autofocus>"));
......
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