Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(193)

Side by Side Diff: chrome/browser/extensions/api/web_navigation/web_navigation_apitest.cc

Issue 2783053003: Disable a few tests that started flaking after r460581. (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/ui/login/login_handler_browsertest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 <list> 5 #include <list>
6 #include <set> 6 #include <set>
7 7
8 #include "base/files/scoped_temp_dir.h" 8 #include "base/files/scoped_temp_dir.h"
9 #include "base/macros.h" 9 #include "base/macros.h"
10 #include "base/memory/ptr_util.h" 10 #include "base/memory/ptr_util.h"
(...skipping 436 matching lines...) Expand 10 before | Expand all | Expand 10 after
447 url = GURL(base::StringPrintf( 447 url = GURL(base::StringPrintf(
448 "http://www.b.com:%u/server-redirect?http://www.b.com:%u/test", 448 "http://www.b.com:%u/server-redirect?http://www.b.com:%u/test",
449 embedded_test_server()->port(), embedded_test_server()->port())); 449 embedded_test_server()->port(), embedded_test_server()->port()));
450 450
451 ui_test_utils::NavigateToURL(browser(), url); 451 ui_test_utils::NavigateToURL(browser(), url);
452 452
453 ASSERT_TRUE(catcher.GetNextResult()) << catcher.message(); 453 ASSERT_TRUE(catcher.GetNextResult()) << catcher.message();
454 } 454 }
455 455
456 IN_PROC_BROWSER_TEST_F(WebNavigationApiTest, ForwardBack) { 456 IN_PROC_BROWSER_TEST_F(WebNavigationApiTest, ForwardBack) {
457 if (content::IsBrowserSideNavigationEnabled())
458 return; // TODO(jam): investigate
457 ASSERT_TRUE(StartEmbeddedTestServer()); 459 ASSERT_TRUE(StartEmbeddedTestServer());
458 ASSERT_TRUE(RunExtensionTest("webnavigation/forwardBack")) << message_; 460 ASSERT_TRUE(RunExtensionTest("webnavigation/forwardBack")) << message_;
459 } 461 }
460 462
461 IN_PROC_BROWSER_TEST_F(WebNavigationApiTest, IFrame) { 463 IN_PROC_BROWSER_TEST_F(WebNavigationApiTest, IFrame) {
462 ASSERT_TRUE(StartEmbeddedTestServer()); 464 ASSERT_TRUE(StartEmbeddedTestServer());
463 ASSERT_TRUE(RunExtensionTest("webnavigation/iframe")) << message_; 465 ASSERT_TRUE(RunExtensionTest("webnavigation/iframe")) << message_;
464 } 466 }
465 467
466 IN_PROC_BROWSER_TEST_F(WebNavigationApiTest, SrcDoc) { 468 IN_PROC_BROWSER_TEST_F(WebNavigationApiTest, SrcDoc) {
(...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after
807 "extensions/api_test/webnavigation/crash/b.html", 809 "extensions/api_test/webnavigation/crash/b.html",
808 embedded_test_server()->port())); 810 embedded_test_server()->port()));
809 ui_test_utils::NavigateToURL(browser(), url); 811 ui_test_utils::NavigateToURL(browser(), url);
810 812
811 ASSERT_TRUE(catcher.GetNextResult()) << catcher.message(); 813 ASSERT_TRUE(catcher.GetNextResult()) << catcher.message();
812 } 814 }
813 815
814 #endif 816 #endif
815 817
816 } // namespace extensions 818 } // namespace extensions
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/login/login_handler_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698