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

Side by Side Diff: extensions/browser/guest_view/web_view/web_view_apitest.cc

Issue 630453002: Revert of Enabling two tests that were disabled in app_shell_browsertests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 "base/path_service.h" 5 #include "base/path_service.h"
6 #include "base/strings/stringprintf.h" 6 #include "base/strings/stringprintf.h"
7 #include "content/public/test/browser_test_utils.h" 7 #include "content/public/test/browser_test_utils.h"
8 #include "content/public/test/test_utils.h" 8 #include "content/public/test/test_utils.h"
9 #include "extensions/browser/app_window/app_window.h" 9 #include "extensions/browser/app_window/app_window.h"
10 #include "extensions/browser/app_window/app_window_registry.h" 10 #include "extensions/browser/app_window/app_window_registry.h"
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 } 107 }
108 108
109 IN_PROC_BROWSER_TEST_F(WebViewAPITest, TestDestroyOnEventListener) { 109 IN_PROC_BROWSER_TEST_F(WebViewAPITest, TestDestroyOnEventListener) {
110 RunTest("testDestroyOnEventListener", "web_view/apitest"); 110 RunTest("testDestroyOnEventListener", "web_view/apitest");
111 } 111 }
112 112
113 IN_PROC_BROWSER_TEST_F(WebViewAPITest, TestDisplayNoneWebviewLoad) { 113 IN_PROC_BROWSER_TEST_F(WebViewAPITest, TestDisplayNoneWebviewLoad) {
114 RunTest("testDisplayNoneWebviewLoad", "web_view/apitest"); 114 RunTest("testDisplayNoneWebviewLoad", "web_view/apitest");
115 } 115 }
116 116
117 IN_PROC_BROWSER_TEST_F(WebViewAPITest, TestDisplayNoneWebviewRemoveChild) { 117 // TODO(lfg): Re-enable this test once the fix for webview leaking
118 // RenderProcessHost has landed. See http://crbug.com/419020 .
119 IN_PROC_BROWSER_TEST_F(WebViewAPITest,
120 DISABLED_TestDisplayNoneWebviewRemoveChild) {
118 RunTest("testDisplayNoneWebviewRemoveChild", "web_view/apitest"); 121 RunTest("testDisplayNoneWebviewRemoveChild", "web_view/apitest");
119 } 122 }
120 123
121 IN_PROC_BROWSER_TEST_F(WebViewAPITest, TestEventName) { 124 IN_PROC_BROWSER_TEST_F(WebViewAPITest, TestEventName) {
122 RunTest("testEventName", "web_view/apitest"); 125 RunTest("testEventName", "web_view/apitest");
123 } 126 }
124 127
125 IN_PROC_BROWSER_TEST_F(WebViewAPITest, TestExecuteScript) { 128 IN_PROC_BROWSER_TEST_F(WebViewAPITest, TestExecuteScript) {
126 RunTest("testExecuteScript", "web_view/apitest"); 129 RunTest("testExecuteScript", "web_view/apitest");
127 } 130 }
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 } 228 }
226 229
227 IN_PROC_BROWSER_TEST_F(WebViewAPITest, TestReloadAfterTerminate) { 230 IN_PROC_BROWSER_TEST_F(WebViewAPITest, TestReloadAfterTerminate) {
228 RunTest("testReloadAfterTerminate", "web_view/apitest"); 231 RunTest("testReloadAfterTerminate", "web_view/apitest");
229 } 232 }
230 233
231 IN_PROC_BROWSER_TEST_F(WebViewAPITest, TestRemoveSrcAttribute) { 234 IN_PROC_BROWSER_TEST_F(WebViewAPITest, TestRemoveSrcAttribute) {
232 RunTest("testRemoveSrcAttribute", "web_view/apitest"); 235 RunTest("testRemoveSrcAttribute", "web_view/apitest");
233 } 236 }
234 237
235 IN_PROC_BROWSER_TEST_F(WebViewAPITest, TestRemoveWebviewAfterNavigation) { 238 // TODO(lfg): Re-enable this test once the fix for webview leaking
239 // RenderProcessHost has landed. See http://crbug.com/419020 .
240 IN_PROC_BROWSER_TEST_F(WebViewAPITest,
241 DISABLED_TestRemoveWebviewAfterNavigation) {
236 RunTest("testRemoveWebviewAfterNavigation", "web_view/apitest"); 242 RunTest("testRemoveWebviewAfterNavigation", "web_view/apitest");
237 } 243 }
238 244
239 IN_PROC_BROWSER_TEST_F(WebViewAPITest, TestResizeWebviewResizesContent) { 245 IN_PROC_BROWSER_TEST_F(WebViewAPITest, TestResizeWebviewResizesContent) {
240 RunTest("testResizeWebviewResizesContent", "web_view/apitest"); 246 RunTest("testResizeWebviewResizesContent", "web_view/apitest");
241 } 247 }
242 248
243 IN_PROC_BROWSER_TEST_F(WebViewAPITest, TestTerminateAfterExit) { 249 IN_PROC_BROWSER_TEST_F(WebViewAPITest, TestTerminateAfterExit) {
244 RunTest("testTerminateAfterExit", "web_view/apitest"); 250 RunTest("testTerminateAfterExit", "web_view/apitest");
245 } 251 }
246 252
247 } // namespace extensions 253 } // namespace extensions
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698