Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "base/utf_string_conversions.h" | |
| 6 #include "chrome/browser/ui/browser.h" | |
| 7 #include "chrome/browser/ui/browser_list.h" | |
| 8 #include "chrome/test/in_process_browser_test.h" | |
| 9 #include "chrome/test/ui_test_utils.h" | |
| 10 #include "content/common/notification_type.h" | |
| 11 #include "content/browser/tab_contents/tab_contents.h" | |
| 12 #include "net/test/test_server.h" | |
| 13 | |
| 14 class ResourceDispatcherHostBrowserTest : public InProcessBrowserTest { | |
| 15 public: | |
| 16 ResourceDispatcherHostBrowserTest() { | |
| 17 EnableDOMAutomation(); | |
| 18 } | |
| 19 | |
| 20 protected: | |
| 21 RenderViewHost* render_view_host() { | |
| 22 return browser()->GetSelectedTabContents()->render_view_host(); | |
| 23 } | |
| 24 }; | |
| 25 | |
| 26 // Test title for content created by javascript window.open(). | |
| 27 // See http://crbug.com/5988 | |
| 28 IN_PROC_BROWSER_TEST_F(ResourceDispatcherHostBrowserTest, DynamicTitle1) { | |
| 29 ASSERT_TRUE(test_server()->Start()); | |
| 30 | |
| 31 GURL url(test_server()->GetURL("files/dynamic1.html")); | |
| 32 ui_test_utils::NavigateToURL(browser(), url); | |
| 33 | |
| 34 // Create dynamic popup. | |
| 35 EXPECT_TRUE(ui_test_utils::ExecuteJavaScript( | |
| 36 render_view_host(), L"", L"OpenPopup();")); | |
| 37 | |
| 38 std::set<Browser*> excluded; | |
| 39 excluded.insert(browser()); | |
| 40 Browser* popup = ui_test_utils::WaitForBrowserNotInSet(excluded); | |
| 41 | |
| 42 ASSERT_TRUE(popup); | |
| 43 | |
| 44 string16 title = popup->GetWindowTitleForCurrentTab(); | |
| 45 ASSERT_EQ(string16::size_type(0), | |
| 46 title.find(ASCIIToUTF16("My Popup Title"))) | |
| 47 << "Actial title: " << title; | |
|
Paweł Hajdan Jr.
2011/06/06 07:17:23
nit: Probably a typo, Actial -> Actual, same below
| |
| 48 } | |
| 49 | |
| 50 // Test title for content created by javascript window.open(). | |
| 51 // See http://crbug.com/5988 | |
| 52 IN_PROC_BROWSER_TEST_F(ResourceDispatcherHostBrowserTest, DynamicTitle2) { | |
| 53 ASSERT_TRUE(test_server()->Start()); | |
| 54 | |
| 55 GURL url(test_server()->GetURL("files/dynamic2.html")); | |
| 56 ui_test_utils::NavigateToURL(browser(), url); | |
| 57 | |
| 58 // Create dynamic popup. | |
| 59 EXPECT_TRUE(ui_test_utils::ExecuteJavaScript( | |
| 60 render_view_host(), L"", L"OpenPopup();")); | |
| 61 | |
| 62 std::set<Browser*> excluded; | |
| 63 excluded.insert(browser()); | |
| 64 Browser* popup = ui_test_utils::WaitForBrowserNotInSet(excluded); | |
| 65 | |
| 66 ASSERT_TRUE(popup); | |
| 67 | |
| 68 string16 title = popup->GetWindowTitleForCurrentTab(); | |
| 69 ASSERT_EQ(string16::size_type(0), | |
| 70 title.find(ASCIIToUTF16("My Dynamic Title"))) | |
| 71 << "Actial title: " << title; | |
| 72 } | |
| OLD | NEW |