| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 <queue> | 5 #include <queue> |
| 6 #include <set> | 6 #include <set> |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "base/callback_helpers.h" | 9 #include "base/callback_helpers.h" |
| 10 #include "base/files/file_util.h" | 10 #include "base/files/file_util.h" |
| (...skipping 3023 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3034 } | 3034 } |
| 3035 | 3035 |
| 3036 IN_PROC_BROWSER_TEST_P(WebViewTest, Shim_TestFindAPI) { | 3036 IN_PROC_BROWSER_TEST_P(WebViewTest, Shim_TestFindAPI) { |
| 3037 TestHelper("testFindAPI", "web_view/shim", NO_TEST_SERVER); | 3037 TestHelper("testFindAPI", "web_view/shim", NO_TEST_SERVER); |
| 3038 } | 3038 } |
| 3039 | 3039 |
| 3040 IN_PROC_BROWSER_TEST_P(WebViewTest, Shim_TestFindAPI_findupdate) { | 3040 IN_PROC_BROWSER_TEST_P(WebViewTest, Shim_TestFindAPI_findupdate) { |
| 3041 TestHelper("testFindAPI_findupdate", "web_view/shim", NO_TEST_SERVER); | 3041 TestHelper("testFindAPI_findupdate", "web_view/shim", NO_TEST_SERVER); |
| 3042 } | 3042 } |
| 3043 | 3043 |
| 3044 IN_PROC_BROWSER_TEST_P(WebViewTest, Shim_testFindInMultipleWebViews) { | |
| 3045 TestHelper("testFindInMultipleWebViews", "web_view/shim", NO_TEST_SERVER); | |
| 3046 } | |
| 3047 | |
| 3048 IN_PROC_BROWSER_TEST_P(WebViewTest, Shim_TestLoadDataAPI) { | 3044 IN_PROC_BROWSER_TEST_P(WebViewTest, Shim_TestLoadDataAPI) { |
| 3049 TestHelper("testLoadDataAPI", "web_view/shim", NEEDS_TEST_SERVER); | 3045 TestHelper("testLoadDataAPI", "web_view/shim", NEEDS_TEST_SERVER); |
| 3050 } | 3046 } |
| 3051 | 3047 |
| 3052 // This test verifies that the resize and contentResize events work correctly. | 3048 // This test verifies that the resize and contentResize events work correctly. |
| 3053 IN_PROC_BROWSER_TEST_P(WebViewSizeTest, Shim_TestResizeEvents) { | 3049 IN_PROC_BROWSER_TEST_P(WebViewSizeTest, Shim_TestResizeEvents) { |
| 3054 TestHelper("testResizeEvents", "web_view/shim", NO_TEST_SERVER); | 3050 TestHelper("testResizeEvents", "web_view/shim", NO_TEST_SERVER); |
| 3055 } | 3051 } |
| 3056 | 3052 |
| 3057 IN_PROC_BROWSER_TEST_P(WebViewTest, Shim_TestPerOriginZoomMode) { | 3053 IN_PROC_BROWSER_TEST_P(WebViewTest, Shim_TestPerOriginZoomMode) { |
| (...skipping 974 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4032 ClosingChromeSignInShouldNotCrash) { | 4028 ClosingChromeSignInShouldNotCrash) { |
| 4033 GURL signin_url{"chrome://chrome-signin"}; | 4029 GURL signin_url{"chrome://chrome-signin"}; |
| 4034 | 4030 |
| 4035 AddTabAtIndex(0, signin_url, ui::PAGE_TRANSITION_TYPED); | 4031 AddTabAtIndex(0, signin_url, ui::PAGE_TRANSITION_TYPED); |
| 4036 AddTabAtIndex(1, signin_url, ui::PAGE_TRANSITION_TYPED); | 4032 AddTabAtIndex(1, signin_url, ui::PAGE_TRANSITION_TYPED); |
| 4037 WaitForWebViewInDom(); | 4033 WaitForWebViewInDom(); |
| 4038 | 4034 |
| 4039 chrome::CloseTab(browser()); | 4035 chrome::CloseTab(browser()); |
| 4040 } | 4036 } |
| 4041 #endif | 4037 #endif |
| OLD | NEW |