summaryrefslogtreecommitdiffstats
path: root/webkit
diff options
context:
space:
mode:
authoryuzo@chromium.org <yuzo@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-27 10:44:51 +0000
committeryuzo@chromium.org <yuzo@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-27 10:44:51 +0000
commitf6813d1566dec10663c1492d517f45b5c0b9d546 (patch)
tree018e491f96ed356dd0e694e5e721823c35314e45 /webkit
parentf83b5b783ac4fd566328772caccb5c3e2d8b8f9a (diff)
downloadchromium_src-f6813d1566dec10663c1492d517f45b5c0b9d546.zip
chromium_src-f6813d1566dec10663c1492d517f45b5c0b9d546.tar.gz
chromium_src-f6813d1566dec10663c1492d517f45b5c0b9d546.tar.bz2
Mark PluginTest.PluginVisibilty as FAILS.
The test fails for WIN. BUG=111601 TEST=none TBR=jam@chromium.org Review URL: https://chromiumcodereview.appspot.com/9232042 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119435 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rw-r--r--webkit/tools/test_shell/plugin_tests.cc11
1 files changed, 9 insertions, 2 deletions
diff --git a/webkit/tools/test_shell/plugin_tests.cc b/webkit/tools/test_shell/plugin_tests.cc
index 269ce03..7580d4e 100644
--- a/webkit/tools/test_shell/plugin_tests.cc
+++ b/webkit/tools/test_shell/plugin_tests.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -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");