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

Unified Diff: webkit/tools/test_shell/plugin_tests.cc

Issue 9232042: Mark PluginTest.PluginVisibilty as FAILS. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed typo Created 8 years, 11 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: 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");
« 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