Skip to content

Commit

Permalink
Mark PluginTest.PluginVisibilty as FAILS.
Browse files Browse the repository at this point in the history
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
  • Loading branch information
yuzo@chromium.org committed Jan 27, 2012
1 parent f83b5b7 commit f6813d1
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions webkit/tools/test_shell/plugin_tests.cc
Original file line number Diff line number Diff line change
@@ -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.

Expand Down Expand Up @@ -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");
Expand Down

0 comments on commit f6813d1

Please sign in to comment.