Commit b7bd0110 authored by Fergal Daly's avatar Fergal Daly Committed by Commit Bot

Make WebUISecurityTest.WebUIReuseInSubframe pass with render document.

The previous expectation was that navigating a subframe would not
change the WbUI object. This changes the test to expect a new object.

It's still unclear if having a new object is actually OK. This is
behind a flag, so we can figure it out.

Change-Id: I6fc1703c7997942412d66e8b29d32fc94cf3a910
Bug: 1064944
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2141486Reviewed-by: default avatardpapad <dpapad@chromium.org>
Reviewed-by: default avatarNasko Oskov <nasko@chromium.org>
Commit-Queue: Fergal Daly <fergal@chromium.org>
Cr-Commit-Position: refs/heads/master@{#774010}
parent b2e7913e
......@@ -15,6 +15,7 @@
#include "content/browser/frame_host/frame_tree_node.h"
#include "content/browser/web_contents/web_contents_impl.h"
#include "content/browser/webui/web_ui_controller_factory_registry.h"
#include "content/common/content_navigation_policy.h"
#include "content/public/browser/site_isolation_policy.h"
#include "content/public/browser/web_ui.h"
#include "content/public/browser/web_ui_controller.h"
......@@ -315,7 +316,11 @@ IN_PROC_BROWSER_TEST_F(WebUISecurityTest, WebUIReuseInSubframe) {
}
EXPECT_EQ(initial_site_instance,
child->current_frame_host()->GetSiteInstance());
if (CreateNewHostForSameSiteSubframe()) {
EXPECT_NE(initial_web_ui, child->current_frame_host()->web_ui());
} else {
EXPECT_EQ(initial_web_ui, child->current_frame_host()->web_ui());
}
// Navigate the child frame cross-site.
GURL subframe_cross_site_url(GetWebUIURL("web-ui-subframe/title1.html"));
......@@ -348,7 +353,11 @@ IN_PROC_BROWSER_TEST_F(WebUISecurityTest, WebUIReuseInSubframe) {
}
EXPECT_EQ(second_site_instance,
child->current_frame_host()->GetSiteInstance());
if (CreateNewHostForSameSiteSubframe()) {
EXPECT_NE(second_web_ui, child->current_frame_host()->web_ui());
} else {
EXPECT_EQ(second_web_ui, child->current_frame_host()->web_ui());
}
// Navigate back to the first document in the subframe, which should bring
// it back to the initial SiteInstance, but use a different RenderFrameHost
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment