OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "base/strings/string_util.h" | 5 #include "base/strings/string_util.h" |
6 #include "base/strings/stringprintf.h" | 6 #include "base/strings/stringprintf.h" |
7 #include "base/strings/utf_string_conversions.h" | 7 #include "base/strings/utf_string_conversions.h" |
8 #include "content/public/browser/navigation_controller.h" | 8 #include "content/public/browser/navigation_controller.h" |
9 #include "content/public/browser/notification_service.h" | 9 #include "content/public/browser/notification_service.h" |
10 #include "content/public/browser/notification_types.h" | 10 #include "content/public/browser/notification_types.h" |
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 | 171 |
172 GoForward(); | 172 GoForward(); |
173 EXPECT_EQ("bot1", GetTabTitle()); | 173 EXPECT_EQ("bot1", GetTabTitle()); |
174 | 174 |
175 GoForward(); | 175 GoForward(); |
176 EXPECT_EQ("bot3", GetTabTitle()); | 176 EXPECT_EQ("bot3", GetTabTitle()); |
177 } | 177 } |
178 | 178 |
179 // Test that back/forward works when navigating in subframes. | 179 // Test that back/forward works when navigating in subframes. |
180 // If this flakes, use http://crbug.com/48833 | 180 // If this flakes, use http://crbug.com/48833 |
181 // TODO(wkorman): Re-enable after fix for http://crbug.com/498938 is in. | 181 IN_PROC_BROWSER_TEST_F(SessionHistoryTest, FrameBackForward) { |
182 IN_PROC_BROWSER_TEST_F(SessionHistoryTest, DISABLED_FrameBackForward) { | |
183 ASSERT_FALSE(CanGoBack()); | 182 ASSERT_FALSE(CanGoBack()); |
184 | 183 |
185 ASSERT_NO_FATAL_FAILURE(NavigateAndCheckTitle("frames.html", "bot1")); | 184 ASSERT_NO_FATAL_FAILURE(NavigateAndCheckTitle("frames.html", "bot1")); |
186 | 185 |
187 ClickLink("abot2"); | 186 ClickLink("abot2"); |
188 EXPECT_EQ("bot2", GetTabTitle()); | 187 EXPECT_EQ("bot2", GetTabTitle()); |
189 GURL frames(GetURL("frames.html")); | 188 GURL frames(GetURL("frames.html")); |
190 EXPECT_EQ(frames, GetTabURL()); | 189 EXPECT_EQ(frames, GetTabURL()); |
191 | 190 |
192 ClickLink("abot3"); | 191 ClickLink("abot3"); |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
229 EXPECT_EQ("bot2", GetTabTitle()); | 228 EXPECT_EQ("bot2", GetTabTitle()); |
230 EXPECT_EQ(frames, GetTabURL()); | 229 EXPECT_EQ(frames, GetTabURL()); |
231 | 230 |
232 GoBack(); | 231 GoBack(); |
233 EXPECT_EQ("bot1", GetTabTitle()); | 232 EXPECT_EQ("bot1", GetTabTitle()); |
234 EXPECT_EQ(frames, GetTabURL()); | 233 EXPECT_EQ(frames, GetTabURL()); |
235 } | 234 } |
236 | 235 |
237 // Test that back/forward preserves POST data and document state in subframes. | 236 // Test that back/forward preserves POST data and document state in subframes. |
238 // If this flakes use http://crbug.com/61619 | 237 // If this flakes use http://crbug.com/61619 |
239 // TODO(wkorman): Re-enable after fix for http://crbug.com/498938 is in. | 238 IN_PROC_BROWSER_TEST_F(SessionHistoryTest, FrameFormBackForward) { |
240 IN_PROC_BROWSER_TEST_F(SessionHistoryTest, DISABLED_FrameFormBackForward) { | |
241 ASSERT_FALSE(CanGoBack()); | 239 ASSERT_FALSE(CanGoBack()); |
242 | 240 |
243 ASSERT_NO_FATAL_FAILURE(NavigateAndCheckTitle("frames.html", "bot1")); | 241 ASSERT_NO_FATAL_FAILURE(NavigateAndCheckTitle("frames.html", "bot1")); |
244 | 242 |
245 ClickLink("aform"); | 243 ClickLink("aform"); |
246 EXPECT_EQ("form", GetTabTitle()); | 244 EXPECT_EQ("form", GetTabTitle()); |
247 GURL frames(GetURL("frames.html")); | 245 GURL frames(GetURL("frames.html")); |
248 EXPECT_EQ(frames, GetTabURL()); | 246 EXPECT_EQ(frames, GetTabURL()); |
249 | 247 |
250 SubmitForm("isubmit"); | 248 SubmitForm("isubmit"); |
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
492 NavigateToURL(shell(), GetURL("title2.html")); | 490 NavigateToURL(shell(), GetURL("title2.html")); |
493 | 491 |
494 ASSERT_TRUE(ExecuteScriptAndExtractInt( | 492 ASSERT_TRUE(ExecuteScriptAndExtractInt( |
495 shell()->web_contents(), | 493 shell()->web_contents(), |
496 "domAutomationController.send(history.length)", | 494 "domAutomationController.send(history.length)", |
497 &length)); | 495 &length)); |
498 EXPECT_EQ(2, length); | 496 EXPECT_EQ(2, length); |
499 } | 497 } |
500 | 498 |
501 } // namespace content | 499 } // namespace content |
OLD | NEW |