| 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 3028 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3039 } | 3039 } |
| 3040 | 3040 |
| 3041 IN_PROC_BROWSER_TEST_P(WebViewTest, Shim_TestFindAPI) { | 3041 IN_PROC_BROWSER_TEST_P(WebViewTest, Shim_TestFindAPI) { |
| 3042 TestHelper("testFindAPI", "web_view/shim", NO_TEST_SERVER); | 3042 TestHelper("testFindAPI", "web_view/shim", NO_TEST_SERVER); |
| 3043 } | 3043 } |
| 3044 | 3044 |
| 3045 IN_PROC_BROWSER_TEST_P(WebViewTest, Shim_TestFindAPI_findupdate) { | 3045 IN_PROC_BROWSER_TEST_P(WebViewTest, Shim_TestFindAPI_findupdate) { |
| 3046 TestHelper("testFindAPI_findupdate", "web_view/shim", NO_TEST_SERVER); | 3046 TestHelper("testFindAPI_findupdate", "web_view/shim", NO_TEST_SERVER); |
| 3047 } | 3047 } |
| 3048 | 3048 |
| 3049 IN_PROC_BROWSER_TEST_P(WebViewTest, Shim_testFindInMultipleWebViews) { |
| 3050 TestHelper("testFindInMultipleWebViews", "web_view/shim", NO_TEST_SERVER); |
| 3051 } |
| 3052 |
| 3049 IN_PROC_BROWSER_TEST_P(WebViewTest, Shim_TestLoadDataAPI) { | 3053 IN_PROC_BROWSER_TEST_P(WebViewTest, Shim_TestLoadDataAPI) { |
| 3050 TestHelper("testLoadDataAPI", "web_view/shim", NEEDS_TEST_SERVER); | 3054 TestHelper("testLoadDataAPI", "web_view/shim", NEEDS_TEST_SERVER); |
| 3051 } | 3055 } |
| 3052 | 3056 |
| 3053 // This test verifies that the resize and contentResize events work correctly. | 3057 // This test verifies that the resize and contentResize events work correctly. |
| 3054 IN_PROC_BROWSER_TEST_P(WebViewSizeTest, Shim_TestResizeEvents) { | 3058 IN_PROC_BROWSER_TEST_P(WebViewSizeTest, Shim_TestResizeEvents) { |
| 3055 TestHelper("testResizeEvents", "web_view/shim", NO_TEST_SERVER); | 3059 TestHelper("testResizeEvents", "web_view/shim", NO_TEST_SERVER); |
| 3056 } | 3060 } |
| 3057 | 3061 |
| 3058 IN_PROC_BROWSER_TEST_P(WebViewTest, Shim_TestPerOriginZoomMode) { | 3062 IN_PROC_BROWSER_TEST_P(WebViewTest, Shim_TestPerOriginZoomMode) { |
| (...skipping 949 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4008 ClosingChromeSignInShouldNotCrash) { | 4012 ClosingChromeSignInShouldNotCrash) { |
| 4009 GURL signin_url{"chrome://chrome-signin"}; | 4013 GURL signin_url{"chrome://chrome-signin"}; |
| 4010 | 4014 |
| 4011 AddTabAtIndex(0, signin_url, ui::PAGE_TRANSITION_TYPED); | 4015 AddTabAtIndex(0, signin_url, ui::PAGE_TRANSITION_TYPED); |
| 4012 AddTabAtIndex(1, signin_url, ui::PAGE_TRANSITION_TYPED); | 4016 AddTabAtIndex(1, signin_url, ui::PAGE_TRANSITION_TYPED); |
| 4013 WaitForWebViewInDom(); | 4017 WaitForWebViewInDom(); |
| 4014 | 4018 |
| 4015 chrome::CloseTab(browser()); | 4019 chrome::CloseTab(browser()); |
| 4016 } | 4020 } |
| 4017 #endif | 4021 #endif |
| OLD | NEW |