OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "extensions/browser/guest_view/web_view/web_view_apitest.h" | 5 #include "extensions/browser/guest_view/web_view/web_view_apitest.h" |
6 | 6 |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 #include "base/path_service.h" | 8 #include "base/path_service.h" |
9 #include "base/strings/string_util.h" | 9 #include "base/strings/string_util.h" |
10 #include "base/strings/stringprintf.h" | 10 #include "base/strings/stringprintf.h" |
(...skipping 597 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
608 IN_PROC_BROWSER_TEST_F(WebViewAPITest, TestNewWindowTwoListeners) { | 608 IN_PROC_BROWSER_TEST_F(WebViewAPITest, TestNewWindowTwoListeners) { |
609 StartTestServer(); | 609 StartTestServer(); |
610 RunTest("testNewWindowTwoListeners", "web_view/apitest"); | 610 RunTest("testNewWindowTwoListeners", "web_view/apitest"); |
611 StopTestServer(); | 611 StopTestServer(); |
612 } | 612 } |
613 | 613 |
614 IN_PROC_BROWSER_TEST_F(WebViewAPITest, TestOnEventProperty) { | 614 IN_PROC_BROWSER_TEST_F(WebViewAPITest, TestOnEventProperty) { |
615 RunTest("testOnEventProperties", "web_view/apitest"); | 615 RunTest("testOnEventProperties", "web_view/apitest"); |
616 } | 616 } |
617 | 617 |
618 IN_PROC_BROWSER_TEST_F(WebViewAPITest, TestPartitionRaisesException) { | 618 IN_PROC_BROWSER_TEST_F(WebViewAPITest, TestPartitionChangeAfterNavigation) { |
619 RunTest("testPartitionRaisesException", "web_view/apitest"); | 619 RunTest("testPartitionChangeAfterNavigation", "web_view/apitest"); |
620 } | 620 } |
621 | 621 |
622 IN_PROC_BROWSER_TEST_F(WebViewAPITest, | 622 IN_PROC_BROWSER_TEST_F(WebViewAPITest, |
623 TestPartitionRemovalAfterNavigationFails) { | 623 TestPartitionRemovalAfterNavigationFails) { |
624 RunTest("testPartitionRemovalAfterNavigationFails", "web_view/apitest"); | 624 RunTest("testPartitionRemovalAfterNavigationFails", "web_view/apitest"); |
625 } | 625 } |
626 | 626 |
627 IN_PROC_BROWSER_TEST_F(WebViewAPITest, TestReassignSrcAttribute) { | 627 IN_PROC_BROWSER_TEST_F(WebViewAPITest, TestReassignSrcAttribute) { |
628 RunTest("testReassignSrcAttribute", "web_view/apitest"); | 628 RunTest("testReassignSrcAttribute", "web_view/apitest"); |
629 } | 629 } |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
699 // object, on the webview element, and hanging directly off webview. | 699 // object, on the webview element, and hanging directly off webview. |
700 IN_PROC_BROWSER_TEST_F(WebViewAPITest, TestWebRequestAPIExistence) { | 700 IN_PROC_BROWSER_TEST_F(WebViewAPITest, TestWebRequestAPIExistence) { |
701 RunTest("testWebRequestAPIExistence", "web_view/apitest"); | 701 RunTest("testWebRequestAPIExistence", "web_view/apitest"); |
702 } | 702 } |
703 | 703 |
704 IN_PROC_BROWSER_TEST_F(WebViewAPITest, TestWebRequestAPIGoogleProperty) { | 704 IN_PROC_BROWSER_TEST_F(WebViewAPITest, TestWebRequestAPIGoogleProperty) { |
705 RunTest("testWebRequestAPIGoogleProperty", "web_view/apitest"); | 705 RunTest("testWebRequestAPIGoogleProperty", "web_view/apitest"); |
706 } | 706 } |
707 | 707 |
708 } // namespace extensions | 708 } // namespace extensions |
OLD | NEW |