OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/prefs/pref_service.h" | 5 #include "base/prefs/pref_service.h" |
6 #include "chrome/browser/ui/browser_window.h" | 6 #include "chrome/browser/ui/browser_window.h" |
7 #include "chrome/browser/ui/chrome_pages.h" | 7 #include "chrome/browser/ui/chrome_pages.h" |
8 #include "chrome/browser/ui/tabs/tab_strip_model.h" | 8 #include "chrome/browser/ui/tabs/tab_strip_model.h" |
9 #include "chrome/common/pref_names.h" | 9 #include "chrome/common/pref_names.h" |
10 #include "chrome/common/url_constants.h" | 10 #include "chrome/common/url_constants.h" |
| 11 #include "chrome/grit/generated_resources.h" |
11 #include "chrome/test/base/in_process_browser_test.h" | 12 #include "chrome/test/base/in_process_browser_test.h" |
12 #include "chrome/test/base/interactive_test_utils.h" | 13 #include "chrome/test/base/interactive_test_utils.h" |
13 #include "chrome/test/base/ui_test_utils.h" | 14 #include "chrome/test/base/ui_test_utils.h" |
14 #include "content/public/browser/render_frame_host.h" | 15 #include "content/public/browser/render_frame_host.h" |
15 #include "content/public/browser/web_contents.h" | 16 #include "content/public/browser/web_contents.h" |
16 #include "content/public/test/browser_test_utils.h" | 17 #include "content/public/test/browser_test_utils.h" |
17 #include "grit/generated_resources.h" | |
18 #include "ui/base/l10n/l10n_util.h" | 18 #include "ui/base/l10n/l10n_util.h" |
19 | 19 |
20 namespace language_options_ui_test { | 20 namespace language_options_ui_test { |
21 | 21 |
22 namespace { | 22 namespace { |
23 | 23 |
24 // This class will test the language options settings. | 24 // This class will test the language options settings. |
25 // This test is part of the interactive_ui_tests isntead of browser_tests | 25 // This test is part of the interactive_ui_tests isntead of browser_tests |
26 // because it is necessary to emulate pushing a button in order to properly | 26 // because it is necessary to emulate pushing a button in order to properly |
27 // test accessiblity. | 27 // test accessiblity. |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 // Make sure that the element is now the button that is next in the tab order. | 128 // Make sure that the element is now the button that is next in the tab order. |
129 // Checking that the list is no longer selected is not sufficient to validate | 129 // Checking that the list is no longer selected is not sufficient to validate |
130 // this use case because this test should fail if an item inside the list is | 130 // this use case because this test should fail if an item inside the list is |
131 // selected. | 131 // selected. |
132 std::string new_id = GetActiveElementId(); | 132 std::string new_id = GetActiveElementId(); |
133 EXPECT_EQ("language-options-add-button", new_id); | 133 EXPECT_EQ("language-options-add-button", new_id); |
134 } | 134 } |
135 | 135 |
136 } // namespace language_options_ui_test | 136 } // namespace language_options_ui_test |
137 | 137 |
OLD | NEW |