| 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/command_line.h" | 5 #include "base/command_line.h" |
| 6 #include "base/prefs/pref_service.h" | 6 #include "base/prefs/pref_service.h" |
| 7 #include "base/strings/utf_string_conversions.h" | 7 #include "base/strings/utf_string_conversions.h" |
| 8 #include "chrome/app/chrome_command_ids.h" | 8 #include "chrome/app/chrome_command_ids.h" |
| 9 #include "chrome/browser/content_settings/host_content_settings_map.h" | 9 #include "chrome/browser/content_settings/host_content_settings_map.h" |
| 10 #include "chrome/browser/profiles/profile.h" | 10 #include "chrome/browser/profiles/profile.h" |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 } | 134 } |
| 135 | 135 |
| 136 ASSERT_EQ(result, SIMPLEREGION); | 136 ASSERT_EQ(result, SIMPLEREGION); |
| 137 bool rects_equal = | 137 bool rects_equal = |
| 138 region_before.left == region_after.left && | 138 region_before.left == region_after.left && |
| 139 region_before.top == region_after.top && | 139 region_before.top == region_after.top && |
| 140 region_before.right == region_after.right && | 140 region_before.right == region_after.right && |
| 141 region_before.bottom == region_after.bottom; | 141 region_before.bottom == region_after.bottom; |
| 142 ASSERT_FALSE(rects_equal); | 142 ASSERT_FALSE(rects_equal); |
| 143 } | 143 } |
| 144 | |
| 145 IN_PROC_BROWSER_TEST_F(PrintPreviewTest, NoCrashOnCloseWithOtherTabs) { | |
| 146 Print(); | |
| 147 | |
| 148 ui_test_utils::NavigateToURLWithDisposition( | |
| 149 browser(), GURL("about:blank"), NEW_FOREGROUND_TAB, | |
| 150 ui_test_utils::BROWSER_TEST_WAIT_FOR_NAVIGATION); | |
| 151 | |
| 152 browser()->tab_strip_model()->ActivateTabAt(0, true); | |
| 153 | |
| 154 // Navigate main tab to hide print preview. | |
| 155 ui_test_utils::NavigateToURL(browser(), GURL("about:blank")); | |
| 156 | |
| 157 browser()->tab_strip_model()->ActivateTabAt(1, true); | |
| 158 } | |
| 159 #endif | 144 #endif |
| 160 | 145 |
| 161 } // namespace | 146 } // namespace |
| OLD | NEW |