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 bdcff19d9483750b3450e54be0033c53a153c04b..15a516bde6a9823d205adac8bc13e607fff6e637 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)); |