Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(120)

Side by Side Diff: chrome/browser/ui/webui/options/language_options_browsertest.js

Issue 168183002: options: prettier fix for bug 281069 that can be committed to trunk later. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: test fixes + merge Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/resources/options/language_options.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 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 /** 5 /**
6 * TestFixture for languages options WebUI testing. 6 * TestFixture for language options WebUI testing.
7 * @extends {testing.Test} 7 * @extends {testing.Test}
8 * @constructor 8 * @constructor
9 **/ 9 */
10 function LanguagesOptionsWebUITest() {} 10 function LanguageOptionsWebUITest() {}
11 11
12 LanguagesOptionsWebUITest.prototype = { 12 LanguageOptionsWebUITest.prototype = {
13 __proto__: testing.Test.prototype, 13 __proto__: testing.Test.prototype,
14 14
15 /** 15 /** @override */
16 * Browse to languages options.
17 **/
18 browsePreload: 'chrome://settings-frame/languages', 16 browsePreload: 'chrome://settings-frame/languages',
19 }; 17 };
20 18
21 // Test opening languages options has correct location. 19 // Test opening language options has correct location.
22 TEST_F('LanguagesOptionsWebUITest', 'testOpenLanguagesOptions', function() { 20 TEST_F('LanguageOptionsWebUITest', 'testOpenLanguageOptions', function() {
23 assertEquals(this.browsePreload, document.location.href); 21 assertEquals(this.browsePreload, document.location.href);
24 }); 22 });
23
24 GEN('#if defined(OS_WIN) || defined(OS_CHROMEOS)');
25 // Test reselecting the same language as the current UI locale. This should show
26 // a "Chrome is displayed in this language" message rather than a restart banner
27 // or a [ Display Chrome in this language ] button.
28 TEST_F('LanguageOptionsWebUITest', 'reselectUILocale', function() {
29 var currentLang = loadTimeData.getString('currentUiLanguageCode');
30 LanguageOptions.uiLanguageSaved(currentLang);
31
32 expectTrue($('language-options-ui-language-button').hidden);
33 expectFalse($('language-options-ui-language-message').hidden);
34 expectTrue($('language-options-ui-notification-bar').hidden);
35 });
36 GEN('#endif'); // defined(OS_WIN) || defined(OS_CHROMEOS)
OLDNEW
« no previous file with comments | « chrome/browser/resources/options/language_options.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698