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

Side by Side Diff: chrome/test/data/webui/settings/cr_settings_browsertest.js

Issue 2700863002: MD Settings: adjust focus-outline behaviors on search engine iron-list. (Closed)
Patch Set: add test file Created 3 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
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 /** @fileoverview Runs the Polymer Settings tests. */ 5 /** @fileoverview Runs the Polymer Settings tests. */
6 6
7 /** @const {string} Path to source root. */ 7 /** @const {string} Path to source root. */
8 var ROOT_PATH = '../../../../../'; 8 var ROOT_PATH = '../../../../../';
9 9
10 // Polymer BrowserTest fixture. 10 // Polymer BrowserTest fixture.
(...skipping 1290 matching lines...) Expand 10 before | Expand all | Expand 10 after
1301 extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([ 1301 extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([
1302 'test_browser_proxy.js', 1302 'test_browser_proxy.js',
1303 'test_extension_control_browser_proxy.js', 1303 'test_extension_control_browser_proxy.js',
1304 'extension_controlled_indicator_tests.js', 1304 'extension_controlled_indicator_tests.js',
1305 ]), 1305 ]),
1306 }; 1306 };
1307 1307
1308 TEST_F('CrSettingsExtensionControlledIndicatorTest', 'All', function() { 1308 TEST_F('CrSettingsExtensionControlledIndicatorTest', 'All', function() {
1309 mocha.run(); 1309 mocha.run();
1310 }); 1310 });
1311
1312 /**
1313 * Test fixture for the Date and Time page.
1314 * @constructor
1315 * @extends {CrSettingsBrowserTest}
1316 */
1317 function CrSettingsFocusableIronListItemBehavior() {}
1318
1319 CrSettingsFocusableIronListItemBehavior.prototype = {
1320 __proto__: CrSettingsBrowserTest.prototype,
1321
1322 /** @override */
1323 browsePreload: 'chrome://md-settings/focusable_iron_list_item_behavior.html',
1324
1325 /** @override */
1326 extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([
1327 'focusable_iron_list_item_behavior_test.js',
1328 ]),
1329 };
1330
1331 TEST_F('CrSettingsFocusableIronListItemBehavior',
1332 'FocusableIronListItemBehavior', function() {
Dan Beam 2017/02/22 23:25:46 can you change this to add new information or be l
scottchen 2017/02/23 00:31:50 Done.
1333 mocha.run();
1334 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698