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

Side by Side Diff: chrome/browser/apps/guest_view/web_view_browsertest.cc

Issue 2700613003: Enable find-in-page across GuestViews. (Closed)
Patch Set: Created 3 years, 9 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
OLDNEW
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 3020 matching lines...) Expand 10 before | Expand all | Expand 10 after
3031 } 3031 }
3032 3032
3033 IN_PROC_BROWSER_TEST_P(WebViewTest, Shim_TestFindAPI) { 3033 IN_PROC_BROWSER_TEST_P(WebViewTest, Shim_TestFindAPI) {
3034 TestHelper("testFindAPI", "web_view/shim", NO_TEST_SERVER); 3034 TestHelper("testFindAPI", "web_view/shim", NO_TEST_SERVER);
3035 } 3035 }
3036 3036
3037 IN_PROC_BROWSER_TEST_P(WebViewTest, Shim_TestFindAPI_findupdate) { 3037 IN_PROC_BROWSER_TEST_P(WebViewTest, Shim_TestFindAPI_findupdate) {
3038 TestHelper("testFindAPI_findupdate", "web_view/shim", NO_TEST_SERVER); 3038 TestHelper("testFindAPI_findupdate", "web_view/shim", NO_TEST_SERVER);
3039 } 3039 }
3040 3040
3041 IN_PROC_BROWSER_TEST_P(WebViewTest, Shim_testFindInMultipleWebViews) {
3042 TestHelper("testFindInMultipleWebViews", "web_view/shim", NO_TEST_SERVER);
3043 }
3044
3041 IN_PROC_BROWSER_TEST_P(WebViewTest, Shim_TestLoadDataAPI) { 3045 IN_PROC_BROWSER_TEST_P(WebViewTest, Shim_TestLoadDataAPI) {
3042 TestHelper("testLoadDataAPI", "web_view/shim", NEEDS_TEST_SERVER); 3046 TestHelper("testLoadDataAPI", "web_view/shim", NEEDS_TEST_SERVER);
3043 } 3047 }
3044 3048
3045 // This test verifies that the resize and contentResize events work correctly. 3049 // This test verifies that the resize and contentResize events work correctly.
3046 IN_PROC_BROWSER_TEST_P(WebViewSizeTest, Shim_TestResizeEvents) { 3050 IN_PROC_BROWSER_TEST_P(WebViewSizeTest, Shim_TestResizeEvents) {
3047 TestHelper("testResizeEvents", "web_view/shim", NO_TEST_SERVER); 3051 TestHelper("testResizeEvents", "web_view/shim", NO_TEST_SERVER);
3048 } 3052 }
3049 3053
3050 IN_PROC_BROWSER_TEST_P(WebViewTest, Shim_TestPerOriginZoomMode) { 3054 IN_PROC_BROWSER_TEST_P(WebViewTest, Shim_TestPerOriginZoomMode) {
(...skipping 911 matching lines...) Expand 10 before | Expand all | Expand 10 after
3962 ClosingChromeSignInShouldNotCrash) { 3966 ClosingChromeSignInShouldNotCrash) {
3963 GURL signin_url{"chrome://chrome-signin"}; 3967 GURL signin_url{"chrome://chrome-signin"};
3964 3968
3965 AddTabAtIndex(0, signin_url, ui::PAGE_TRANSITION_TYPED); 3969 AddTabAtIndex(0, signin_url, ui::PAGE_TRANSITION_TYPED);
3966 AddTabAtIndex(1, signin_url, ui::PAGE_TRANSITION_TYPED); 3970 AddTabAtIndex(1, signin_url, ui::PAGE_TRANSITION_TYPED);
3967 WaitForWebViewInDom(); 3971 WaitForWebViewInDom();
3968 3972
3969 chrome::CloseTab(browser()); 3973 chrome::CloseTab(browser());
3970 } 3974 }
3971 #endif 3975 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698