summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortony@chromium.org <tony@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-06 17:18:01 +0000
committertony@chromium.org <tony@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-06 17:18:01 +0000
commit6a3ca9862ab2959c6a51595323aee4fc3fae4f2a (patch)
tree2f43489e0e569e074bfa23bb7c2ace6c49078d98
parent9a3b5d1342e41b430e0e20221fd3f74b44a5fb47 (diff)
downloadchromium_src-6a3ca9862ab2959c6a51595323aee4fc3fae4f2a.zip
chromium_src-6a3ca9862ab2959c6a51595323aee4fc3fae4f2a.tar.gz
chromium_src-6a3ca9862ab2959c6a51595323aee4fc3fae4f2a.tar.bz2
Disable failing test on Linux.
I will investigate and re-enable. TBR=phajdan.jr Review URL: http://codereview.chromium.org/3030054 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55243 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--webkit/tools/test_shell/plugin_tests.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/webkit/tools/test_shell/plugin_tests.cc b/webkit/tools/test_shell/plugin_tests.cc
index aed5dc5..f608d8f 100644
--- a/webkit/tools/test_shell/plugin_tests.cc
+++ b/webkit/tools/test_shell/plugin_tests.cc
@@ -78,6 +78,8 @@ class PluginTest : public TestShellTest {
FilePath plugin_file_path_;
};
+#if !defined(OS_LINUX)
+// TODO(tony): http://code.google.com/p/chromium/issues/detail?id=51402
// Tests navigator.plugins.refresh() works.
TEST_F(PluginTest, Refresh) {
std::string html = "\
@@ -127,6 +129,7 @@ TEST_F(PluginTest, Refresh) {
text = test_shell_->webView()->mainFrame()->contentAsText(10000).utf8();
ASSERT_EQ(text, "DONE");
}
+#endif
// Tests that if a frame is deleted as a result of calling NPP_HandleEvent, we
// don't crash.