OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "base/basictypes.h" | 5 #include "base/basictypes.h" |
6 #include "base/file_path.h" | 6 #include "base/file_path.h" |
7 #include "build/build_config.h" | 7 #include "build/build_config.h" |
8 #include "chrome/test/automation/tab_proxy.h" | 8 #include "chrome/test/automation/tab_proxy.h" |
9 #include "chrome/test/ui/ui_test.h" | 9 #include "chrome/test/ui/ui_test.h" |
10 #include "net/base/net_util.h" | 10 #include "net/base/net_util.h" |
11 | 11 |
12 class DefaultPluginUITest : public UITest { | 12 class DefaultPluginUITest : public UITest { |
13 public: | 13 public: |
14 DefaultPluginUITest() { | 14 DefaultPluginUITest() { |
15 dom_automation_enabled_ = true; | 15 dom_automation_enabled_ = true; |
16 } | 16 } |
17 }; | 17 }; |
18 | 18 |
19 TEST_F(DefaultPluginUITest, DefaultPluginLoadTest) { | 19 // Failing consistently: crbug/46662 |
| 20 TEST_F(DefaultPluginUITest, DISABLED_DefaultPluginLoadTest) { |
20 // Open page with default plugin. | 21 // Open page with default plugin. |
21 FilePath test_file(test_data_directory_); | 22 FilePath test_file(test_data_directory_); |
22 test_file = test_file.AppendASCII("default_plugin.html"); | 23 test_file = test_file.AppendASCII("default_plugin.html"); |
23 NavigateToURL(net::FilePathToFileURL(test_file)); | 24 NavigateToURL(net::FilePathToFileURL(test_file)); |
24 | 25 |
25 // Check that the default plugin was loaded. It executes a bit of javascript | 26 // Check that the default plugin was loaded. It executes a bit of javascript |
26 // in the HTML file which replaces the innerHTML of div |result| with "DONE". | 27 // in the HTML file which replaces the innerHTML of div |result| with "DONE". |
27 scoped_refptr<TabProxy> tab(GetActiveTab()); | 28 scoped_refptr<TabProxy> tab(GetActiveTab()); |
28 std::wstring out; | 29 std::wstring out; |
29 ASSERT_TRUE(tab->ExecuteAndExtractString(L"", | 30 ASSERT_TRUE(tab->ExecuteAndExtractString(L"", |
30 L"domAutomationController.send(" | 31 L"domAutomationController.send(" |
31 L"document.getElementById('result').innerHTML)", &out)); | 32 L"document.getElementById('result').innerHTML)", &out)); |
32 ASSERT_EQ(L"DONE", out); | 33 ASSERT_EQ(L"DONE", out); |
33 } | 34 } |
OLD | NEW |