| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 <stddef.h> | 5 #include <stddef.h> |
| 6 #include <deque> | 6 #include <deque> |
| 7 #include <set> | 7 #include <set> |
| 8 #include <string> | 8 #include <string> |
| 9 #include <unordered_map> | 9 #include <unordered_map> |
| 10 #include <utility> | 10 #include <utility> |
| (...skipping 3199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3210 EXPECT_TRUE(ExecuteScriptAndExtractString( | 3210 EXPECT_TRUE(ExecuteScriptAndExtractString( |
| 3211 web_contents, | 3211 web_contents, |
| 3212 "window.domAutomationController.send(" | 3212 "window.domAutomationController.send(" |
| 3213 "document.getElementsByTagName('pre')[0].innerText);", | 3213 "document.getElementsByTagName('pre')[0].innerText);", |
| 3214 &body)); | 3214 &body)); |
| 3215 EXPECT_EQ("text=value\n", body); | 3215 EXPECT_EQ("text=value\n", body); |
| 3216 } | 3216 } |
| 3217 | 3217 |
| 3218 // Prerenders a page that tries to automatically sign user in via the Credential | 3218 // Prerenders a page that tries to automatically sign user in via the Credential |
| 3219 // Manager API. The page should be killed. | 3219 // Manager API. The page should be killed. |
| 3220 IN_PROC_BROWSER_TEST_F(PrerenderBrowserTest, AutosigninInPrerenderer) { | 3220 // |
| 3221 // Disabled. See http://crbug.com/660278 |
| 3222 IN_PROC_BROWSER_TEST_F(PrerenderBrowserTest, DISABLED_AutosigninInPrerenderer) { |
| 3221 // Set up a credential in the password store. | 3223 // Set up a credential in the password store. |
| 3222 PasswordStoreFactory::GetInstance()->SetTestingFactory( | 3224 PasswordStoreFactory::GetInstance()->SetTestingFactory( |
| 3223 current_browser()->profile(), | 3225 current_browser()->profile(), |
| 3224 password_manager::BuildPasswordStore< | 3226 password_manager::BuildPasswordStore< |
| 3225 content::BrowserContext, password_manager::TestPasswordStore>); | 3227 content::BrowserContext, password_manager::TestPasswordStore>); |
| 3226 scoped_refptr<password_manager::TestPasswordStore> password_store = | 3228 scoped_refptr<password_manager::TestPasswordStore> password_store = |
| 3227 static_cast<password_manager::TestPasswordStore*>( | 3229 static_cast<password_manager::TestPasswordStore*>( |
| 3228 PasswordStoreFactory::GetForProfile( | 3230 PasswordStoreFactory::GetForProfile( |
| 3229 current_browser()->profile(), | 3231 current_browser()->profile(), |
| 3230 ServiceAccessType::IMPLICIT_ACCESS).get()); | 3232 ServiceAccessType::IMPLICIT_ACCESS).get()); |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3402 browser()->tab_strip_model()->GetActiveWebContents(); | 3404 browser()->tab_strip_model()->GetActiveWebContents(); |
| 3403 bool display_test_result = false; | 3405 bool display_test_result = false; |
| 3404 ASSERT_TRUE(content::ExecuteScriptAndExtractBool(web_contents, | 3406 ASSERT_TRUE(content::ExecuteScriptAndExtractBool(web_contents, |
| 3405 "DidDisplayReallyPass()", | 3407 "DidDisplayReallyPass()", |
| 3406 &display_test_result)); | 3408 &display_test_result)); |
| 3407 ASSERT_TRUE(display_test_result); | 3409 ASSERT_TRUE(display_test_result); |
| 3408 } | 3410 } |
| 3409 #endif // !defined(DISABLE_NACL) | 3411 #endif // !defined(DISABLE_NACL) |
| 3410 | 3412 |
| 3411 } // namespace prerender | 3413 } // namespace prerender |
| OLD | NEW |