| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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/keyboard_codes.h" | 5 #include "base/keyboard_codes.h" |
| 6 #include "base/message_loop.h" | 6 #include "base/message_loop.h" |
| 7 #include "chrome/browser/browser.h" | 7 #include "chrome/browser/browser.h" |
| 8 #include "chrome/browser/browser_window.h" | 8 #include "chrome/browser/browser_window.h" |
| 9 #include "chrome/browser/find_bar_controller.h" | 9 #include "chrome/browser/find_bar_controller.h" |
| 10 #include "chrome/browser/find_notification_details.h" | 10 #include "chrome/browser/find_notification_details.h" |
| (...skipping 536 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 547 EXPECT_TRUE(fully_visible); | 547 EXPECT_TRUE(fully_visible); |
| 548 | 548 |
| 549 browser()->ShowHistoryTab(); | 549 browser()->ShowHistoryTab(); |
| 550 | 550 |
| 551 // Make sure Find box is closed. | 551 // Make sure Find box is closed. |
| 552 EXPECT_TRUE(GetFindBarWindowInfo(&position, &fully_visible)); | 552 EXPECT_TRUE(GetFindBarWindowInfo(&position, &fully_visible)); |
| 553 EXPECT_FALSE(fully_visible); | 553 EXPECT_FALSE(fully_visible); |
| 554 } | 554 } |
| 555 | 555 |
| 556 // Make sure Find box moves out of the way if it is obscuring the active match. | 556 // Make sure Find box moves out of the way if it is obscuring the active match. |
| 557 IN_PROC_BROWSER_TEST_F(FindInPageControllerTest, FindMovesWhenObscuring) { | 557 // Flaky, see http://crbug.com/16447. |
| 558 IN_PROC_BROWSER_TEST_F(FindInPageControllerTest, FLAKY_FindMovesWhenObscuring) { |
| 558 HTTPTestServer* server = StartHTTPServer(); | 559 HTTPTestServer* server = StartHTTPServer(); |
| 559 | 560 |
| 560 GURL url = server->TestServerPageW(kMoveIfOver); | 561 GURL url = server->TestServerPageW(kMoveIfOver); |
| 561 ui_test_utils::NavigateToURL(browser(), url); | 562 ui_test_utils::NavigateToURL(browser(), url); |
| 562 | 563 |
| 563 // Open the Find window with animations disabled. | 564 // Open the Find window with animations disabled. |
| 564 DropdownBarHost::disable_animations_during_testing_ = true; | 565 DropdownBarHost::disable_animations_during_testing_ = true; |
| 565 browser()->ShowFindBar(); | 566 browser()->ShowFindBar(); |
| 566 | 567 |
| 567 gfx::Point start_position; | 568 gfx::Point start_position; |
| (...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 785 // Find "given". | 786 // Find "given". |
| 786 FindInPageWchar(tab2, L"given", kFwd, kIgnoreCase, &ordinal); | 787 FindInPageWchar(tab2, L"given", kFwd, kIgnoreCase, &ordinal); |
| 787 | 788 |
| 788 // Switch back to first tab. | 789 // Switch back to first tab. |
| 789 browser()->SelectTabContentsAt(0, false); | 790 browser()->SelectTabContentsAt(0, false); |
| 790 browser()->GetFindBarController()->EndFindSession(); | 791 browser()->GetFindBarController()->EndFindSession(); |
| 791 // Simulate F3. | 792 // Simulate F3. |
| 792 ui_test_utils::FindInPage(tab1, string16(), kFwd, kIgnoreCase, &ordinal); | 793 ui_test_utils::FindInPage(tab1, string16(), kFwd, kIgnoreCase, &ordinal); |
| 793 EXPECT_EQ(tab1->find_text(), WideToUTF16(L"Default")); | 794 EXPECT_EQ(tab1->find_text(), WideToUTF16(L"Default")); |
| 794 } | 795 } |
| OLD | NEW |