Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / chrome / browser / ui / webui / options / language_options_browsertest.js
blobfc5ffba8f7b5d28a5783e9cc3a9572c37080bcb3
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
3 // found in the LICENSE file.
5 GEN_INCLUDE(['options_browsertest_base.js']);
7 /**
8  * TestFixture for language options WebUI testing.
9  * @extends {testing.Test}
10  * @constructor
11  */
12 function LanguageOptionsWebUITest() {}
14 LanguageOptionsWebUITest.prototype = {
15   __proto__: OptionsBrowsertestBase.prototype,
17   /** @override */
18   browsePreload: 'chrome://settings-frame/languages',
21 // Test opening language options has correct location.
22 TEST_F('LanguageOptionsWebUITest', 'testOpenLanguageOptions', function() {
23   assertEquals(this.browsePreload, document.location.href);
24 });
26 GEN('#if defined(OS_WIN) || defined(OS_CHROMEOS)');
27 // Test reselecting the same language as the current UI locale. This should show
28 // a "Chrome is displayed in this language" message rather than a restart banner
29 // or a [ Display Chrome in this language ] button.
30 TEST_F('LanguageOptionsWebUITest', 'reselectUILocale', function() {
31   var currentLang = loadTimeData.getString('currentUiLanguageCode');
32   $('language-options-list').selectLanguageByCode(currentLang);
33   LanguageOptions.uiLanguageSaved(currentLang);
35   expectTrue($('language-options-ui-language-button').hidden);
36   expectFalse($('language-options-ui-language-message').hidden);
37   expectTrue($('language-options-ui-notification-bar').hidden);
38 });
39 GEN('#endif');  // defined(OS_WIN) || defined(OS_CHROMEOS)