| OLD | NEW |
| 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 1376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1387 | 1387 |
| 1388 TEST_F('CrSettingsExtensionControlledIndicatorTest', 'All', function() { | 1388 TEST_F('CrSettingsExtensionControlledIndicatorTest', 'All', function() { |
| 1389 mocha.run(); | 1389 mocha.run(); |
| 1390 }); | 1390 }); |
| 1391 | 1391 |
| 1392 /** | 1392 /** |
| 1393 * Test fixture for the Date and Time page. | 1393 * Test fixture for the Date and Time page. |
| 1394 * @constructor | 1394 * @constructor |
| 1395 * @extends {CrSettingsBrowserTest} | 1395 * @extends {CrSettingsBrowserTest} |
| 1396 */ | 1396 */ |
| 1397 function CrSettingsFocusableIronListItemBehavior() {} | 1397 function CrSettingsFocusRowBehavior() {} |
| 1398 | 1398 |
| 1399 CrSettingsFocusableIronListItemBehavior.prototype = { | 1399 CrSettingsFocusRowBehavior.prototype = { |
| 1400 __proto__: CrSettingsBrowserTest.prototype, | 1400 __proto__: CrSettingsBrowserTest.prototype, |
| 1401 | 1401 |
| 1402 /** @override */ | 1402 /** @override */ |
| 1403 browsePreload: 'chrome://md-settings/focusable_iron_list_item_behavior.html', | 1403 browsePreload: 'chrome://md-settings/focus_row_behavior.html', |
| 1404 | 1404 |
| 1405 /** @override */ | 1405 /** @override */ |
| 1406 extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([ | 1406 extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([ |
| 1407 'focusable_iron_list_item_behavior_test.js', | 1407 'focus_row_behavior_test.js', |
| 1408 ]), | 1408 ]), |
| 1409 }; | 1409 }; |
| 1410 | 1410 |
| 1411 TEST_F('CrSettingsFocusableIronListItemBehavior', 'FocusTest', function() { | 1411 TEST_F('CrSettingsFocusRowBehavior', 'FocusTest', function() { |
| 1412 mocha.run(); | 1412 mocha.run(); |
| 1413 }); | 1413 }); |
| OLD | NEW |