Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1503)

Unified Diff: content/browser/tab_contents/navigation_controller_unittest.cc

Issue 8224023: Don't show URL for pending new navigations initiated by the renderer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/tab_contents/navigation_controller_unittest.cc
diff --git a/content/browser/tab_contents/navigation_controller_unittest.cc b/content/browser/tab_contents/navigation_controller_unittest.cc
index f856cbe0ab9524de2996fed180246ea0413b533d..7a317364fd07b19341f30fdb4a60d58d6e7ac5d9 100644
--- a/content/browser/tab_contents/navigation_controller_unittest.cc
+++ b/content/browser/tab_contents/navigation_controller_unittest.cc
@@ -1768,6 +1768,36 @@ TEST_F(NavigationControllerTest, TransientEntry) {
EXPECT_EQ(controller().GetEntryAtIndex(4)->url(), url4);
}
+// Tests that the URLs for renderer-initiated navigations are not displayed to
+// the user until the navigation commits, to prevent URL spoof attacks.
+// See http://crbug.com/99016.
+TEST_F(NavigationControllerTest, DontShowRendererURLUntilCommit) {
+ TestNotificationTracker notifications;
+ RegisterForAllNavNotifications(&notifications, &controller());
+
+ const GURL url0("http://foo/0");
+ const GURL url1("http://foo/1");
+
+ // For typed navigations (browser-initiated), both active and visible entries
+ // should update before commit.
+ controller().LoadURL(url0, GURL(), PageTransition::TYPED, std::string());
+ EXPECT_EQ(url0, controller().GetActiveEntry()->url());
+ EXPECT_EQ(url0, controller().GetVisibleEntry()->url());
+ rvh()->SendNavigate(0, url0);
+
+ // For link clicks (renderer-initiated navigations), the active entry should
+ // update before commit but the visible should not.
+ controller().LoadURL(url1, GURL(), PageTransition::LINK, std::string());
+ EXPECT_EQ(url1, controller().GetActiveEntry()->url());
+ EXPECT_EQ(url0, controller().GetVisibleEntry()->url());
+ rvh()->SendNavigate(1, url1);
+ // After commit, both should be updated.
+ EXPECT_EQ(url1, controller().GetActiveEntry()->url());
+ EXPECT_EQ(url1, controller().GetVisibleEntry()->url());
+
+ notifications.Reset();
+}
+
// Tests that IsInPageNavigation returns appropriate results. Prevents
// regression for bug 1126349.
TEST_F(NavigationControllerTest, IsInPageNavigation) {

Powered by Google App Engine
This is Rietveld 408576698