Index: content/browser/site_per_process_browsertest.cc |
diff --git a/content/browser/site_per_process_browsertest.cc b/content/browser/site_per_process_browsertest.cc |
index e61c79084d804712fa773b8bb3aefedb3ed21fbb..20a3ce3917da497a9f2496724d008807d5052214 100644 |
--- a/content/browser/site_per_process_browsertest.cc |
+++ b/content/browser/site_per_process_browsertest.cc |
@@ -7229,4 +7229,43 @@ IN_PROC_BROWSER_TEST_F(SitePerProcessBrowserTest, AllowFullscreen) { |
EXPECT_TRUE(is_fullscreen_allowed(root->child_at(0)->child_at(0))); |
} |
+// Tests that an out-of-process iframe receives the visibilitychange event. |
+IN_PROC_BROWSER_TEST_F(SitePerProcessBrowserTest, VisibilityChange) { |
+ GURL main_url(embedded_test_server()->GetURL( |
+ "a.com", "/cross_site_iframe_factory.html?a(b)")); |
+ NavigateToURL(shell(), main_url); |
+ |
+ FrameTreeNode* root = static_cast<WebContentsImpl*>(shell()->web_contents()) |
+ ->GetFrameTree() |
+ ->root(); |
+ |
+ EXPECT_EQ( |
+ " Site A ------------ proxies for B\n" |
+ " +--Site B ------- proxies for A\n" |
+ "Where A = http://a.com/\n" |
+ " B = http://b.com/", |
+ DepictFrameTree(root)); |
+ |
+ EXPECT_TRUE(ExecuteScript( |
+ root->child_at(0)->current_frame_host(), |
+ "var event_fired = 0;\n" |
+ "document.addEventListener('visibilitychange',\n" |
+ " function() { event_fired++; });\n")); |
+ |
+ shell()->web_contents()->WasHidden(); |
+ |
+ int event_fired = 0; |
+ EXPECT_TRUE(ExecuteScriptAndExtractInt( |
+ root->child_at(0)->current_frame_host(), |
+ "window.domAutomationController.send(event_fired);", &event_fired)); |
+ EXPECT_EQ(1, event_fired); |
+ |
+ shell()->web_contents()->WasShown(); |
+ |
+ EXPECT_TRUE(ExecuteScriptAndExtractInt( |
+ root->child_at(0)->current_frame_host(), |
+ "window.domAutomationController.send(event_fired);", &event_fired)); |
+ EXPECT_EQ(2, event_fired); |
+} |
+ |
} // namespace content |