| Index: content/browser/frame_host/frame_tree_browsertest.cc
|
| diff --git a/content/browser/frame_host/frame_tree_browsertest.cc b/content/browser/frame_host/frame_tree_browsertest.cc
|
| index f94b415ffa2499749f06df7650e1696c4c9655c1..7bce1a6bf9a23530f7586d4029437ad3d958d412 100644
|
| --- a/content/browser/frame_host/frame_tree_browsertest.cc
|
| +++ b/content/browser/frame_host/frame_tree_browsertest.cc
|
| @@ -487,7 +487,7 @@ IN_PROC_BROWSER_TEST_F(FrameTreeBrowserTest, ChildFrameWithSrcdoc) {
|
| EXPECT_EQ(2U, root->child_count());
|
| observer.Wait();
|
|
|
| - EXPECT_EQ(GURL(url::kAboutBlankURL), root->child_at(1)->current_url());
|
| + EXPECT_EQ(GURL(kAboutSrcDocURL), root->child_at(1)->current_url());
|
| EXPECT_TRUE(ExecuteScriptAndExtractString(
|
| root->child_at(1), "domAutomationController.send(document.origin);",
|
| &frame_origin));
|
| @@ -506,7 +506,7 @@ IN_PROC_BROWSER_TEST_F(FrameTreeBrowserTest, ChildFrameWithSrcdoc) {
|
| EXPECT_TRUE(ExecuteScript(root, script));
|
| observer.Wait();
|
|
|
| - EXPECT_EQ(GURL(url::kAboutBlankURL), child->current_url());
|
| + EXPECT_EQ(GURL(kAboutSrcDocURL), child->current_url());
|
| EXPECT_TRUE(ExecuteScriptAndExtractString(
|
| child, "domAutomationController.send(document.origin);",
|
| &frame_origin));
|
|
|