| Index: webkit/tools/test_shell/plugin_tests.cc
|
| diff --git a/webkit/tools/test_shell/plugin_tests.cc b/webkit/tools/test_shell/plugin_tests.cc
|
| index 269ce035f30590d9de7c7cd2e55c98995b5164d1..33836161aef68d90c8b4c2794e9416be2ca9c9b8 100644
|
| --- a/webkit/tools/test_shell/plugin_tests.cc
|
| +++ b/webkit/tools/test_shell/plugin_tests.cc
|
| @@ -166,7 +166,14 @@ BOOL CALLBACK EnumChildProc(HWND hwnd, LPARAM lparam) {
|
| }
|
|
|
| // Tests that hiding/showing the parent frame hides/shows the plugin.
|
| -TEST_F(PluginTest, PluginVisibilty) {
|
| +// Fails for WIN. http://crbug.com/111601
|
| +#if defined(OS_WIN)
|
| +#define MAYBE_PluginVisibilty FAILS_PluginVisibilty
|
| +#else
|
| +#define MAYBE_PluginVisibilty PluginVisibilty
|
| +#endif
|
| +
|
| +TEST_F(PluginTest, MAYBE_PluginVisibilty) {
|
| FilePath test_html = data_dir_;
|
| test_html = test_html.AppendASCII(kPluginsDir);
|
| test_html = test_html.AppendASCII("plugin_visibility.html");
|
|
|