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 "apps/ui/native_app_window.h" | 5 #include "apps/ui/native_app_window.h" |
6 #include "base/path_service.h" | 6 #include "base/path_service.h" |
7 #include "base/strings/stringprintf.h" | 7 #include "base/strings/stringprintf.h" |
8 #include "base/strings/utf_string_conversions.h" | 8 #include "base/strings/utf_string_conversions.h" |
9 #include "chrome/app/chrome_command_ids.h" | 9 #include "chrome/app/chrome_command_ids.h" |
10 #include "chrome/browser/apps/app_browsertest_util.h" | 10 #include "chrome/browser/apps/app_browsertest_util.h" |
(...skipping 895 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
906 } | 906 } |
907 | 907 |
908 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestCannotMutateEventName) { | 908 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestCannotMutateEventName) { |
909 TestHelper("testCannotMutateEventName", "web_view/shim", NO_TEST_SERVER); | 909 TestHelper("testCannotMutateEventName", "web_view/shim", NO_TEST_SERVER); |
910 } | 910 } |
911 | 911 |
912 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestPartitionRaisesException) { | 912 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestPartitionRaisesException) { |
913 TestHelper("testPartitionRaisesException", "web_view/shim", NO_TEST_SERVER); | 913 TestHelper("testPartitionRaisesException", "web_view/shim", NO_TEST_SERVER); |
914 } | 914 } |
915 | 915 |
| 916 IN_PROC_BROWSER_TEST_F(WebViewTest, |
| 917 Shim_TestPartitionRemovalAfterNavigationFails) { |
| 918 TestHelper("testPartitionRemovalAfterNavigationFails", |
| 919 "web_view/shim", |
| 920 NO_TEST_SERVER); |
| 921 } |
| 922 |
916 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestExecuteScriptFail) { | 923 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestExecuteScriptFail) { |
917 #if defined(OS_WIN) | 924 #if defined(OS_WIN) |
918 // Flaky on XP bot http://crbug.com/266185 | 925 // Flaky on XP bot http://crbug.com/266185 |
919 if (base::win::GetVersion() <= base::win::VERSION_XP) | 926 if (base::win::GetVersion() <= base::win::VERSION_XP) |
920 return; | 927 return; |
921 #endif | 928 #endif |
922 | 929 |
923 TestHelper("testExecuteScriptFail", "web_view/shim", NEEDS_TEST_SERVER); | 930 TestHelper("testExecuteScriptFail", "web_view/shim", NEEDS_TEST_SERVER); |
924 } | 931 } |
925 | 932 |
(...skipping 1220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2146 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestFindAPI_findupdate) { | 2153 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestFindAPI_findupdate) { |
2147 TestHelper("testFindAPI_findupdate", "web_view/shim", NO_TEST_SERVER); | 2154 TestHelper("testFindAPI_findupdate", "web_view/shim", NO_TEST_SERVER); |
2148 } | 2155 } |
2149 | 2156 |
2150 // <webview> screenshot capture fails with ubercomp. | 2157 // <webview> screenshot capture fails with ubercomp. |
2151 // See http://crbug.com/327035. | 2158 // See http://crbug.com/327035. |
2152 IN_PROC_BROWSER_TEST_F(WebViewCaptureTest, | 2159 IN_PROC_BROWSER_TEST_F(WebViewCaptureTest, |
2153 DISABLED_Shim_ScreenshotCapture) { | 2160 DISABLED_Shim_ScreenshotCapture) { |
2154 TestHelper("testScreenshotCapture", "web_view/shim", NO_TEST_SERVER); | 2161 TestHelper("testScreenshotCapture", "web_view/shim", NO_TEST_SERVER); |
2155 } | 2162 } |
OLD | NEW |