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 "base/command_line.h" | 5 #include "base/command_line.h" |
6 #include "base/strings/stringprintf.h" | 6 #include "base/strings/stringprintf.h" |
7 #include "content/public/browser/web_contents.h" | 7 #include "content/public/browser/web_contents.h" |
8 #include "content/public/browser/web_contents_delegate.h" | 8 #include "content/public/browser/web_contents_delegate.h" |
9 #include "content/public/common/content_switches.h" | 9 #include "content/public/common/site_isolation_policy.h" |
10 #include "content/public/test/browser_test_utils.h" | 10 #include "content/public/test/browser_test_utils.h" |
11 #include "content/public/test/content_browser_test.h" | 11 #include "content/public/test/content_browser_test.h" |
12 #include "content/public/test/content_browser_test_utils.h" | 12 #include "content/public/test/content_browser_test_utils.h" |
13 #include "content/public/test/test_navigation_observer.h" | 13 #include "content/public/test/test_navigation_observer.h" |
14 #include "content/shell/browser/shell.h" | 14 #include "content/shell/browser/shell.h" |
15 #include "net/dns/mock_host_resolver.h" | 15 #include "net/dns/mock_host_resolver.h" |
16 #include "url/gurl.h" | 16 #include "url/gurl.h" |
17 | 17 |
18 namespace content { | 18 namespace content { |
19 | 19 |
(...skipping 17 matching lines...) Expand all Loading... |
37 | 37 |
38 DISALLOW_COPY_AND_ASSIGN(CloseTrackingDelegate); | 38 DISALLOW_COPY_AND_ASSIGN(CloseTrackingDelegate); |
39 }; | 39 }; |
40 | 40 |
41 } // namespace | 41 } // namespace |
42 | 42 |
43 class OpenedByDOMTest : public ContentBrowserTest { | 43 class OpenedByDOMTest : public ContentBrowserTest { |
44 protected: | 44 protected: |
45 void SetUpCommandLine(base::CommandLine* command_line) override { | 45 void SetUpCommandLine(base::CommandLine* command_line) override { |
46 // Use --site-per-process to force process swaps on cross-site navigations. | 46 // Use --site-per-process to force process swaps on cross-site navigations. |
47 command_line->AppendSwitch(switches::kSitePerProcess); | 47 SiteIsolationPolicy::IsolateAllSitesForTesting(command_line); |
48 } | 48 } |
49 | 49 |
50 bool AttemptCloseFromJavaScript(WebContents* web_contents) { | 50 bool AttemptCloseFromJavaScript(WebContents* web_contents) { |
51 CloseTrackingDelegate close_tracking_delegate; | 51 CloseTrackingDelegate close_tracking_delegate; |
52 WebContentsDelegate* old_delegate = web_contents->GetDelegate(); | 52 WebContentsDelegate* old_delegate = web_contents->GetDelegate(); |
53 web_contents->SetDelegate(&close_tracking_delegate); | 53 web_contents->SetDelegate(&close_tracking_delegate); |
54 | 54 |
55 const char kCloseWindowScript[] = | 55 const char kCloseWindowScript[] = |
56 // Close the window. | 56 // Close the window. |
57 "window.close();" | 57 "window.close();" |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 url3 = url3.ReplaceComponents(replace_host); | 129 url3 = url3.ReplaceComponents(replace_host); |
130 | 130 |
131 NavigateToURL(shell(), url1); | 131 NavigateToURL(shell(), url1); |
132 | 132 |
133 Shell* popup = OpenWindowFromJavaScript(shell(), url2); | 133 Shell* popup = OpenWindowFromJavaScript(shell(), url2); |
134 NavigateToURL(popup, url3); | 134 NavigateToURL(popup, url3); |
135 EXPECT_TRUE(AttemptCloseFromJavaScript(popup->web_contents())); | 135 EXPECT_TRUE(AttemptCloseFromJavaScript(popup->web_contents())); |
136 } | 136 } |
137 | 137 |
138 } // namespace content | 138 } // namespace content |
OLD | NEW |