| OLD | NEW |
| 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 "extensions/browser/guest_view/web_view/web_view_apitest.h" | 5 #include "extensions/browser/guest_view/web_view/web_view_apitest.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| (...skipping 718 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 729 | 729 |
| 730 IN_PROC_BROWSER_TEST_F(WebViewAPITest, TestWebRequestAPIGoogleProperty) { | 730 IN_PROC_BROWSER_TEST_F(WebViewAPITest, TestWebRequestAPIGoogleProperty) { |
| 731 RunTest("testWebRequestAPIGoogleProperty", "web_view/apitest"); | 731 RunTest("testWebRequestAPIGoogleProperty", "web_view/apitest"); |
| 732 } | 732 } |
| 733 | 733 |
| 734 // This test verifies that webview.contentWindow works inside an iframe | 734 // This test verifies that webview.contentWindow works inside an iframe |
| 735 IN_PROC_BROWSER_TEST_F(WebViewAPITest, TestWebViewInsideFrame) { | 735 IN_PROC_BROWSER_TEST_F(WebViewAPITest, TestWebViewInsideFrame) { |
| 736 LaunchApp("web_view/inside_iframe"); | 736 LaunchApp("web_view/inside_iframe"); |
| 737 } | 737 } |
| 738 | 738 |
| 739 IN_PROC_BROWSER_TEST_F(WebViewAPITest, TestCaptureVisibleRegion) { |
| 740 RunTest("testCaptureVisibleRegion", "web_view/apitest"); |
| 741 } |
| 739 | 742 |
| 740 } // namespace extensions | 743 } // namespace extensions |
| OLD | NEW |